Skip to content

Commit

Permalink
Fix for incendiary OB spread.
Browse files Browse the repository at this point in the history
  • Loading branch information
Segrain committed Oct 27, 2023
1 parent 2588df1 commit 8bb3a10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/projectiles/guns/flamer/flamer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ GLOBAL_LIST_EMPTY(flamer_particles)
switch(angle) //this reduces power when the explosion is going around corners
if (45)
spread_power *= 0.75
else //turns out angles greater than 90 degrees almost never happen. This bit also prevents trying to spread backwards
if (90 to 180) //turns out angles greater than 90 degrees almost never happen. This bit also prevents trying to spread backwards
continue

switch(spread_direction)
Expand Down

0 comments on commit 8bb3a10

Please sign in to comment.