Skip to content

Commit

Permalink
[MIRROR] Fixes false walls icons using the wrong icon files [MDB IGNO…
Browse files Browse the repository at this point in the history
…RE] (#25504)

* Fixes false walls icons using the wrong icon files

* Update false_walls.dm

---------

Co-authored-by: Bloop <[email protected]>
  • Loading branch information
2 people authored and FFMirrorBot committed Dec 8, 2023
1 parent 0430061 commit 1b904cc
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions code/game/objects/structures/false_walls.dm
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,21 @@

/obj/structure/falsewall/update_icon_state()
if(opening)
<<<<<<< HEAD

Check failure on line 75 in code/game/objects/structures/false_walls.dm

View workflow job for this annotation

GitHub Actions / Run Linters

got '<<', expected one of: newline, '/', identifier
icon_state = "fwall_[density ? "opening" : "closing"]"
return ..()
icon_state = density ? "[base_icon_state]-[smoothing_junction]" : "fwall_open"
=======
icon = initial(icon)
icon_state = "[base_icon_state]-[density ? "opening" : "closing"]"
return ..()
if(density)
icon = fake_icon
icon_state = "[base_icon_state]-[smoothing_junction]"
else
icon = initial(icon)
icon_state = "[base_icon_state]-open"
>>>>>>> d73a0183 ([MIRROR] Fixes false walls icons using the wrong icon files [MDB IGNORE] (#25504))
return ..()

/obj/structure/falsewall/proc/ChangeToWall(delete = 1)
Expand Down

0 comments on commit 1b904cc

Please sign in to comment.