Resolves compile errors with the exception of map errors.

This commit is contained in:
Cameron653
2019-01-12 21:09:29 -05:00
parent fb6f5e33ca
commit 9dd973221d
140 changed files with 1223 additions and 1211 deletions
+3 -3
View File
@@ -151,12 +151,12 @@
sparks()
if(telepad)
var/L = get_turf(telepad)
var/blocked = list(/mob/living/simple_animal/hostile)
var/list/hostiles = typesof(/mob/living/simple_animal/hostile) - blocked
var/blocked = list(/mob/living/simple_mob/hostile)
var/list/hostiles = typesof(/mob/living/simple_mob/hostile) - blocked
playsound(L, 'sound/effects/phasein.ogg', 100, 1, extrarange = 3, falloff = 5)
for(var/i in 1 to rand(1,4))
var/chosen = pick(hostiles)
var/mob/living/simple_animal/hostile/H = new chosen
var/mob/living/simple_mob/hostile/H = new chosen
H.forceMove(L)
return
if(99)