Moves some list initializations to New

Fixes missing ..() calls in New()
This commit is contained in:
AnturK
2016-06-07 18:39:13 +02:00
committed by AnturK
parent 0187de935d
commit 19eb97ae18
41 changed files with 74 additions and 56 deletions
+1 -1
View File
@@ -145,7 +145,7 @@
src.ExtinguishMob()
if(buckled)
buckled.unbuckle_mob(src,force=1)
if(buckled_mobs.len)
if(has_buckled_mobs())
unbuckle_all_mobs(force=1)
if(pulledby)
pulledby.stop_pulling()
@@ -35,7 +35,7 @@
if(target.pulledby)
target.pulledby.stop_pulling()
target.stop_pulling()
if(target.buckled_mobs.len)
if(target.has_buckled_mobs())
target.unbuckle_all_mobs(force=1)
jaunt_disappear(animation, target)
target.loc = holder
@@ -40,7 +40,7 @@
if(!target.Move(picked))
if(target.buckled)
target.buckled.unbuckle_mob(target,force=1)
if(target.buckled_mobs.len)
if(target.has_buckled_mobs())
target.unbuckle_all_mobs(force=1)
target.loc = picked
playsound(get_turf(user), sound2, 50,1)