From 0fae6d5787ea0cd78ab1f8e818e03493805b02c2 Mon Sep 17 00:00:00 2001 From: Time-Green <7501474+Time-Green@users.noreply.github.com> Date: Mon, 22 Jun 2026 16:33:39 +0200 Subject: [PATCH] [no gbp] Gizmo burgerfix and code improvement (#96604) ## About The Pull Request Grabs an easy fix and code improvement from https://github.com/tgstation/tgstation/pull/96255 Gizmo burger uses the proper type and is no longer called 'food' Makes the name list static Adds a new gizmo name ## Changelog :cl: fix: Gizmo burgers are no longer burgerless /:cl: There's more on my docket but I got no coderjuice so it'll be a few days/weeks/months/years before I can start doing a proper second code/feature/design pass for gizmo's --- code/modules/research/gizmo/gizmo_machines.dm | 4 ++-- code/modules/research/gizmo/gizmodes/giz_filler.dm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/research/gizmo/gizmo_machines.dm b/code/modules/research/gizmo/gizmo_machines.dm index 87f93866dfb..1db60ac8fe4 100644 --- a/code/modules/research/gizmo/gizmo_machines.dm +++ b/code/modules/research/gizmo/gizmo_machines.dm @@ -16,10 +16,10 @@ /// Reference to the gizmo. We dont actually need to track this for anything but ease of vv var/datum/gizmo_controller/controller = /datum/gizmo_controller /// Possible names to pick from to keep things confusing - var/list/possible_names = list( + var/static/list/possible_names = list( "gizmo", "jigger", "doohickey", "particle inverter", "polarity superplexer", "flitcher poster", "natty gonk", "quantum quantum", "entropy nilum", "tachyon streamer", "doing device", "task operator", "interface responder", "kinetic observer", "turbo encabulator", - "statistic responder", "possibility matrix", "toety aaier", "phase anchor", + "statistic responder", "possibility matrix", "toety aaier", "phase anchor", "thingamajing", ) /obj/machinery/gizmo/Initialize(mapload) diff --git a/code/modules/research/gizmo/gizmodes/giz_filler.dm b/code/modules/research/gizmo/gizmodes/giz_filler.dm index 15adbc58023..239ba7ba644 100644 --- a/code/modules/research/gizmo/gizmodes/giz_filler.dm +++ b/code/modules/research/gizmo/gizmodes/giz_filler.dm @@ -92,7 +92,7 @@ /datum/gizpulse/dispense/food possible_objects = list( /obj/item/food/donut/plain = 1, - /obj/item/food/burger = 1, + /obj/item/food/burger/plain = 1, ) /datum/gizpulse/dispense/food/modify(atom/movable/new_object)