Fixing case on some del() calls.

This commit is contained in:
Zuhayr
2014-01-29 04:31:38 +10:30
parent 69d260a11d
commit 9301c72933
2 changed files with 3 additions and 3 deletions

View File

@@ -30,7 +30,7 @@
..()
/obj/item/weapon/holder/process()
if(!loc) Del(src)
if(!loc) del(src)
if(istype(loc,/turf) || !(contents.len))
for(var/mob/M in contents)

View File

@@ -150,7 +150,7 @@
//To avoid duplicates.
for(var/obj/item/weapon/implant/cortical/imp in H.contents)
affected.implants -= imp
Del(imp)
del(imp)
var/obj/item/weapon/implant/cortical/I = new(H)
I.imp_in = H
@@ -206,7 +206,7 @@
if(D.client)
D.loc = H.loc
else
Del(D)
del(D)
H.visible_message("\red[H] splits apart with a wet slithering noise!")