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] (#1039)

* Fixes false walls icons using the wrong icon files

* Update false_walls.dm

---------

Co-authored-by: SkyratBot <[email protected]>
Co-authored-by: Bloop <[email protected]>
Co-authored-by: Iajret <[email protected]>
  • Loading branch information
4 people authored Dec 9, 2023
1 parent 83f62d3 commit 9f271d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/game/objects/structures/false_walls.dm
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,14 @@

/obj/structure/falsewall/update_icon_state()
if(opening)
icon = fake_icon
icon = initial(icon)
icon_state = "[base_icon_state]-[density ? "opening" : "closing"]"
return ..()
if(density)
icon = initial(icon)
icon = fake_icon
icon_state = "[base_icon_state]-[smoothing_junction]"
else
icon = fake_icon
icon = initial(icon)
icon_state = "[base_icon_state]-open"
return ..()

Expand Down

0 comments on commit 9f271d4

Please sign in to comment.