From 66dd71fd36c86ef4acf596b768689a2736a058ee Mon Sep 17 00:00:00 2001 From: QuiteLiterallyAnything <154708292+QuiteLiterallyAnything@users.noreply.github.com> Date: Sun, 12 Jul 2026 16:06:41 -0500 Subject: [PATCH] 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 :cl: fix: Portable gravity generators will no longer become invisible when screwed open. /:cl: --- code/game/machinery/portagrav.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/portagrav.dm b/code/game/machinery/portagrav.dm index 27cf859f8d7..6f73f3c781a 100644 --- a/code/game/machinery/portagrav.dm +++ b/code/game/machinery/portagrav.dm @@ -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)