Skip to content

Commit

Permalink
fix: Через плазменные окна больше нельзя ходить (#328)
Browse files Browse the repository at this point in the history
## About The Pull Request
Пофиксил возможность ходить через плазменные окна
closes #265
## Why It's Good For The Game
Больше нельзя попасть в ловушку плазмажокера
## Changelog
:cl:
fix: фикс плазма и затемненных окон.

/:cl:
  • Loading branch information
VentelR authored Jul 4, 2024
1 parent f78cd7e commit 157a729
Showing 1 changed file with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,34 @@
/obj/structure/window/reinforced/tinted
icon = 'modular_bandastation/aesthetics/windows/icons/directional.dmi'
icon_state = "r_window"
flags_1 = UNPAINTABLE_1
color = "#5A6E82"

/obj/structure/window/reinforced/tinted/Initialize(mapload,direct)
. = ..()
flags_1 |= UNPAINTABLE_1

/obj/structure/window/reinforced/tinted/frosted
icon_state = "r_window"
color = "#5A6E82"

/obj/structure/window/plasma
icon = 'modular_bandastation/aesthetics/windows/icons/directional.dmi'
icon_state = "window"
flags_1 = UNPAINTABLE_1
color = "#C800FF"

/obj/structure/window/plasma/Initialize(mapload,direct)
. = ..()
flags_1 |= UNPAINTABLE_1

/obj/structure/window/reinforced/plasma
icon = 'modular_bandastation/aesthetics/windows/icons/directional.dmi'
icon_state = "r_window"
flags_1 = UNPAINTABLE_1
color = "#C800FF"

/obj/structure/window/reinforced/plasma/Initialize(mapload,direct)
. = ..()
flags_1 |= UNPAINTABLE_1

// Delete colors
/obj/structure/window/bronze
color = null
Expand Down

0 comments on commit 157a729

Please sign in to comment.