Merge pull request #15585 from SandPoot/Initialize(mapload)
Every case of initialize that should have mapload, does
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
var/transmitting // Current /datum/blackmarket_purchase being sent to the target uplink.
|
||||
var/list/datum/blackmarket_purchase/queue = list() // Queue for purchases that the machine should recieve and send.
|
||||
|
||||
/obj/machinery/ltsrbt/Initialize()
|
||||
/obj/machinery/ltsrbt/Initialize(mapload)
|
||||
. = ..()
|
||||
SSblackmarket.telepads += src
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/obj/item/blackmarket_uplink
|
||||
name = "Black Market Uplink"
|
||||
desc = "A mishmash of a subspace amplifier, a radio, and an analyzer. Somehow able to access the black market, with a variable inventory in limited stock at inflated prices. No refunds, customer responsible for pick-ups."
|
||||
desc = "A mishmash of a subspace amplifier, a radio, and an analyzer. Somehow able to access the black market, with a variable inventory in limited stock at inflated prices. No refunds, customer responsible for pick-ups."
|
||||
icon = 'icons/obj/blackmarket.dmi'
|
||||
icon_state = "uplink"
|
||||
// UI variables.
|
||||
@@ -13,7 +13,7 @@
|
||||
var/money = 0 // How much money is inserted into the uplink.
|
||||
var/list/accessible_markets = list(/datum/blackmarket_market/blackmarket) // List of typepaths for "/datum/blackmarket_market"s that this uplink can access.
|
||||
|
||||
/obj/item/blackmarket_uplink/Initialize()
|
||||
/obj/item/blackmarket_uplink/Initialize(mapload)
|
||||
. = ..()
|
||||
if(accessible_markets.len)
|
||||
viewing_market = accessible_markets[1]
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
var/printer_ready = 0 //cooldown var
|
||||
var/static/datum/bank_account/cargocash
|
||||
|
||||
/obj/machinery/computer/bounty/Initialize()
|
||||
/obj/machinery/computer/bounty/Initialize(mapload)
|
||||
. = ..()
|
||||
printer_ready = world.time + PRINTER_TIMEOUT
|
||||
cargocash = SSeconomy.get_dep_account(ACCOUNT_CAR)
|
||||
@@ -20,7 +20,7 @@
|
||||
/obj/item/paper/bounty_printout
|
||||
name = "paper - Bounties"
|
||||
|
||||
/obj/item/paper/bounty_printout/Initialize()
|
||||
/obj/item/paper/bounty_printout/Initialize(mapload)
|
||||
. = ..()
|
||||
info = "<h2>Nanotrasen Cargo Bounties</h2></br>"
|
||||
update_icon()
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
can_approve_requests = FALSE
|
||||
requestonly = TRUE
|
||||
|
||||
/obj/machinery/computer/cargo/Initialize()
|
||||
/obj/machinery/computer/cargo/Initialize(mapload)
|
||||
. = ..()
|
||||
radio = new /obj/item/radio/headset/headset_cargo(src)
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
var/locked = TRUE //is the console locked? unlock with ID
|
||||
var/usingBeacon = FALSE //is the console in beacon mode? exists to let beacon know when a pod may come in
|
||||
|
||||
/obj/machinery/computer/cargo/express/Initialize()
|
||||
/obj/machinery/computer/cargo/express/Initialize(mapload)
|
||||
. = ..()
|
||||
packin_up()
|
||||
|
||||
|
||||
@@ -89,7 +89,7 @@
|
||||
style = customStyle
|
||||
setStyle(style) //Upon initialization, give the supplypod an iconstate, name, and description based on the "style" variable. This system is important for the centcom_podlauncher to function correctly
|
||||
|
||||
/obj/structure/closet/supplypod/extractionpod/Initialize()
|
||||
/obj/structure/closet/supplypod/extractionpod/Initialize(mapload)
|
||||
. = ..()
|
||||
var/turf/picked_turf = pick(GLOB.holdingfacility)
|
||||
reverse_dropoff_coords = list(picked_turf.x, picked_turf.y, picked_turf.z)
|
||||
|
||||
Reference in New Issue
Block a user