Skip to content

Commit

Permalink
nothingstopsthemail
Browse files Browse the repository at this point in the history
  • Loading branch information
generalthrax committed Sep 25, 2024
1 parent ce35cdd commit 49a8131
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion code/modules/food_and_drinks/drinks/drinks/bottle.dm
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,13 @@
break
if(firestarter && active)
hit_atom.fire_act()
new /obj/effect/hotspot(get_turf(hit_atom))
var/turf/T = get_turf(hit_atom)
T.IgniteTurf(30)
var/turf/otherT
for(var/direction in GLOB.cardinals)
otherT = get_step(T, direction)
otherT.IgniteTurf(30)
new /obj/effect/hotspot(otherT)
..()

/obj/item/reagent_containers/food/drinks/bottle/molotov/attackby(obj/item/I, mob/user, params)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
T.IgniteTurf(reac_volume)
new /obj/effect/hotspot(T, reac_volume * 1, FIRE_MINIMUM_TEMPERATURE_TO_EXIST + reac_volume * 10)
var/turf/otherT
for(var/direction in GLOB.cardinals)
for(var/direction in GLOB.alldirs)
otherT = get_step(T, direction)
otherT.IgniteTurf(reac_volume)
new /obj/effect/hotspot(otherT, reac_volume * 1, FIRE_MINIMUM_TEMPERATURE_TO_EXIST + reac_volume * 10)
Expand Down

0 comments on commit 49a8131

Please sign in to comment.