Reverts the fix to the progress bar proc

This commit is contained in:
Crazylemon64
2016-03-08 17:04:18 -08:00
parent 6c7447c127
commit d6c71b4469
+1 -4
View File
@@ -658,10 +658,7 @@ proc/anim(turf/location as turf,target as mob|obj,a_icon,a_icon_state as text,fl
var/image/progbar
for (var/i = 1 to numticks)
if(user.client)
var/bar_target = target
if(bar_target == null)
bar_target = user
progbar = make_progress_bar(i, numticks, bar_target)
progbar = make_progress_bar(i, numticks, target)
user.client.images |= progbar
sleep(delayfraction)
if(!user || user.stat || user.weakened || user.stunned || !(user.loc == Uloc))