Changelog

This commit is contained in:
c0
2015-08-04 00:14:24 +03:00
parent 667d5e75c3
commit d3c363a2e4
2 changed files with 46 additions and 3 deletions
@@ -27,10 +27,10 @@
if("drop organ/implant", "remove organ/implant")
for(var/obj/item/organ/internal/I in C.internal_organs)
organs["[I] ([I.type])"] = I
organs["[I.name] ([I.type])"] = I
for(var/obj/item/weapon/implant/I in C)
organs["[I] ([I.type])"] = I
organs["[I.name] ([I.type])"] = I
var/obj/item/organ = input("Select organ/implant:", "Organ Manipulation", null) in organs
organ = organs[organ]
@@ -52,4 +52,5 @@
else if(I) // Put the implant in case.
var/obj/item/weapon/implantcase/case = new(get_turf(C))
case.imp = I
I.loc = case
I.loc = case
case.update_icon()