Skip to content

Commit

Permalink
Make Non-Toxic Water Stop Glowing (#6608)
Browse files Browse the repository at this point in the history
# About the pull request

This PR make non-toxic water stop glowing, it kinda don't make sense,
that on some maps, where water cover essential points is just GLOWING,
now water will not glow unless its intended to be glowing.

# Explain why it's good for the game
Water should not glow in darkness (unless its intended like on trijent
dam)


# Testing Photographs and Procedure
![waterchange-ezgif
com-video-to-gif-converter](https://github.com/cmss13-devs/cmss13/assets/89580971/7a61318c-dce4-4af3-87b1-727000ebad68)


# Changelog
:cl:
fix: Make non-toxic water stop glowing.
/:cl:
  • Loading branch information
Venuska1117 authored Jul 4, 2024
1 parent 82c081a commit 3d4be77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/game/turfs/floors/desert.dm
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
set_light(2)
icon = 'icons/turf/floors/desert_water_toxic.dmi'
if(0)
set_light(1)
set_light(0)
icon = 'icons/turf/floors/desert_water.dmi'
if(-1)
set_light(1)
Expand Down Expand Up @@ -199,7 +199,7 @@
set_light(2)
icon = 'icons/turf/floors/desert_water_toxic.dmi'
if(0)
set_light(1)
set_light(0)
icon = 'icons/turf/floors/desert_water.dmi'
if(-1)
set_light(1)
Expand All @@ -224,7 +224,7 @@
set_light(2)
icon = 'icons/turf/floors/desert_water_toxic.dmi'
if(0)
set_light(1)
set_light(0)
icon = 'icons/turf/floors/desert_water.dmi'
if(-1)
set_light(1)
Expand Down

0 comments on commit 3d4be77

Please sign in to comment.