mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-27 17:41:50 +00:00
- Viciously rips radio code from bots, replacing it with something better and faster! - Bot patrol logic redesigned, much faster. - Gives all bots Robotics access for easy patrol activation. - Bot navigation beacons are no longer radios. Instead, they are maintained in a global list. - Navbeacons can now be accessed by Roboticists, and they use a better UI. - PDA bot code rewritten. They no longer use radio objects at all! - Captain now has all-access! His cartridge now has everything except Mime and Clown functions. - There is now one button across all PDAs for accessing bots. Only bots you have access to control will show on the list. - Buffed the signaler cartridge! It may now be used to signal on all valid frequencies. - The AI's botcall interface now includes the bot's model, so it can always identify the type of bot it is controlling. PDAs have this as well. - Spilled my blood to begin Jordie's dark ritual.
14 lines
1.3 KiB
Plaintext
14 lines
1.3 KiB
Plaintext
var/global/list/cable_list = list() //Index for all cables, so that powernets don't have to look through the entire world all the time
|
|
var/global/list/portals = list() //list of all /obj/effect/portal
|
|
var/global/list/airlocks = list() //list of all airlocks
|
|
var/global/list/mechas_list = list() //list of all mechs. Used by hostile mobs target tracking.
|
|
var/global/list/shuttle_caller_list = list() //list of all communication consoles and AIs, for automatic shuttle calls when there are none.
|
|
var/global/list/machines = list() //NOTE: this is a list of ALL machines now. The processing machines list is SSmachine.processing !
|
|
var/global/list/navbeacons = list() //list of all bot nagivation beacons, used for patrolling.
|
|
var/global/list/deliverybeacons = list() //list of all MULEbot delivery beacons.
|
|
var/global/list/deliverybeacontags = list() //list of all tags associated with delivery beacons.
|
|
|
|
var/global/list/chemical_reactions_list //list of all /datum/chemical_reaction datums. Used during chemical reactions
|
|
var/global/list/chemical_reagents_list //list of all /datum/reagent datums indexed by reagent id. Used by chemistry stuff
|
|
var/global/list/surgeries_list = list() //list of all surgeries by name, associated with their path.
|
|
var/global/list/table_recipes = list() //list of all table craft recipes |