Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Исправлен индикатор статуса мусорки #13742

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/modules/recycling/disposal.dm
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@
set_light(1, 1, "#0c8801")

for(var/image/I in status_overlay)
I.plane = LIGHTING_LAMPS_PLANE
I.layer = DEFAULT_MACHINERY_LAYER + 0.01
Comment on lines 410 to +411
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I.plane = LIGHTING_LAMPS_PLANE поднимает лампочку на плейн поверх тьмы, к которому еще и применяется пачка фильтров (посмотри как лампочка выглядит во тьме до и после изменений)
так мы просто откатим изменения, сделанные в #11943
ненужное отображение поверх объектов - это чутка более глобальная проблема, которая затрагивает все, что пользуется этим плейном (переключатели света на стенах, глаза нимф-дион, свет на шлеме нюкеров и etc.)
и её нужно как-то более глобально решать

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Спасибо! Пойду пораскуриваю

add_overlay(I)

// timed process
Expand Down
Loading