More while loop stuff, removed shitloads of unnecessary curly brackets in the map reader, fixed ED-209 projectiles

This commit is contained in:
SkyMarshal
2012-06-22 14:10:48 -07:00
parent 668f81c329
commit 616be6eed8
16 changed files with 133 additions and 194 deletions
@@ -53,7 +53,7 @@
affected_mob.updatehealth()
if(prob(40)) //So everyone can feel like robot Seth Brundle
if(src.gibbed != 0) return 0
var/turf/T = find_loc(affected_mob)
var/turf/T = get_turf(affected_mob)
gibs(T)
src.cure(0)
gibbed = 1
+1 -1
View File
@@ -53,7 +53,7 @@
affected_mob.updatehealth()
if(prob(40))
if(gibbed != 0) return 0
var/turf/T = find_loc(affected_mob)
var/turf/T = get_turf(affected_mob)
gibs(T)
src.cure(0)
gibbed = 1