Fix NIF surgery post-update

This line was put into the wrong block (a good example of why relative pathing is bad, since it made it unclear where it was before in normal code).
This commit is contained in:
Arokha Sieyes
2017-12-26 01:50:04 -05:00
parent 1efb7bfa7c
commit fe2d09f17a
+1 -1
View File
@@ -122,7 +122,6 @@
return
if(affected && affected.cavity)
var/total_volume = tool.w_class
if(istype(tool,/obj/item/device/nif)){var/obj/item/device/nif/N = tool;N.implant(target)} //VOREStation Add - NIF support
for(var/obj/item/I in affected.implants)
if(istype(I,/obj/item/weapon/implant))
continue
@@ -149,6 +148,7 @@
user.drop_item()
affected.implants += tool
tool.loc = affected
if(istype(tool,/obj/item/device/nif)){var/obj/item/device/nif/N = tool;N.implant(target)} //VOREStation Add - NIF support
affected.cavity = 0
//////////////////////////////////////////////////////////////////