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)