diff --git a/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm b/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm index 068c41a4056..1b41cd45cd5 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm @@ -16,7 +16,7 @@ var/icon_on = "smartfridge" var/icon_off = "smartfridge-off" -/obj/machinery/smartfridge/New() +/obj/machinery/smartfridge/Initialize() ..() create_reagents() reagents.set_reacting(FALSE) diff --git a/code/modules/mining/mine_items.dm b/code/modules/mining/mine_items.dm index 1e807689191..b5c1cef4b6e 100644 --- a/code/modules/mining/mine_items.dm +++ b/code/modules/mining/mine_items.dm @@ -389,16 +389,18 @@ name = "dusty survival pod storage" desc = "A heated storage unit. This one's seen better days." -/obj/machinery/smartfridge/survival_pod/empty/New() - return() +/obj/machinery/smartfridge/survival_pod/empty/Initialize(mapload) + ..(mapload, TRUE) /obj/machinery/smartfridge/survival_pod/accept_check(obj/item/O) if(istype(O, /obj/item)) return 1 return 0 -/obj/machinery/smartfridge/survival_pod/New() +/obj/machinery/smartfridge/survival_pod/Initialize(mapload, empty) ..() + if(empty) + return for(var/i in 1 to 5) var/obj/item/weapon/reagent_containers/food/snacks/donkpocket/warm/W = new(src) load(W)