mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 20:48:56 +01:00
One-line portable gravity generator sprite fix (#96935)
## About The Pull Request An underscore seems to have been accidentally changed to a hyphen in #95408. This broke the portable gravgen screwed open sprite state. ## Why It's Good For The Game This fixes #96906 ## Changelog 🆑 fix: Portable gravity generators will no longer become invisible when screwed open. /🆑
This commit is contained in:
@@ -88,7 +88,7 @@
|
||||
|
||||
/obj/machinery/power/portagrav/update_icon_state()
|
||||
. = ..()
|
||||
icon_state = panel_open ? "[base_icon_state]-o" : base_icon_state
|
||||
icon_state = panel_open ? "[base_icon_state]_o" : base_icon_state
|
||||
|
||||
/obj/machinery/power/portagrav/screwdriver_act(mob/living/user, obj/item/tool)
|
||||
return default_deconstruction_screwdriver(user, tool)
|
||||
|
||||
Reference in New Issue
Block a user