mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 05:00:55 +01:00
Merge pull request #19597 from ChangelingRain/icantstopthistouchtheworldstouchacaressastrikeitslikesandintheairflayingoffmywisheslikeasandstorm
Bubblegum's blood spray and Drake fire breath now stop on solid turfs
This commit is contained in:
@@ -174,8 +174,8 @@ Difficulty: Hard
|
||||
spawn(0)
|
||||
var/turf/E = get_edge_target_turf(src, src.dir)
|
||||
var/range = 10
|
||||
for(var/turf/open/J in getline(src,E))
|
||||
if(!range)
|
||||
for(var/turf/J in getline(src,E))
|
||||
if(!range || J.density)
|
||||
break
|
||||
playsound(J,'sound/effects/splat.ogg', 100, 1, -1)
|
||||
new /obj/effect/decal/cleanable/blood(J)
|
||||
|
||||
@@ -182,8 +182,8 @@ Difficulty: Medium
|
||||
/mob/living/simple_animal/hostile/megafauna/dragon/proc/fire_wall(dir)
|
||||
var/turf/E = get_edge_target_turf(src, dir)
|
||||
var/range = 10
|
||||
for(var/turf/open/J in getline(src,E))
|
||||
if(!range)
|
||||
for(var/turf/J in getline(src,E))
|
||||
if(!range || J.density)
|
||||
break
|
||||
range--
|
||||
PoolOrNew(/obj/effect/hotspot,J)
|
||||
|
||||
Reference in New Issue
Block a user