mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-29 06:57:42 +01:00
Removes some unused radio vars and defines (#30808)
* Removes some unused radio stuff * oop
This commit is contained in:
@@ -115,11 +115,7 @@
|
||||
var/model = ""
|
||||
/// Bot Purpose under Show Laws
|
||||
var/bot_purpose = "improve the station to the best of your ability"
|
||||
/// Bot control frequency
|
||||
var/control_freq = BOT_FREQ
|
||||
|
||||
/// The radio filter the bot uses to identify itself on the network.
|
||||
var/bot_filter
|
||||
/// Type of bot, one of the *_BOT defines.
|
||||
var/bot_type
|
||||
/// The type of data HUD the bot uses. Diagnostic by default.
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
health = 25
|
||||
maxHealth = 25
|
||||
radio_channel = "Service" //Service
|
||||
bot_filter = RADIO_CLEANBOT
|
||||
bot_type = CLEAN_BOT
|
||||
model = "Cleanbot"
|
||||
bot_purpose = "seek out messes and clean them"
|
||||
|
||||
@@ -14,7 +14,6 @@
|
||||
|
||||
radio_channel = "Security"
|
||||
bot_type = SEC_BOT
|
||||
bot_filter = RADIO_SECBOT
|
||||
model = "ED-209"
|
||||
bot_purpose = "seek out criminals, handcuff them, and report their location to security"
|
||||
req_access = list(ACCESS_SECURITY)
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
|
||||
radio_channel = "Engineering"
|
||||
bot_type = FLOOR_BOT
|
||||
bot_filter = RADIO_FLOORBOT
|
||||
model = "Floorbot"
|
||||
bot_purpose = "seek out damaged or missing floor tiles, and repair or replace them as necessary"
|
||||
req_access = list(ACCESS_CONSTRUCTION, ACCESS_ROBOTICS)
|
||||
@@ -232,7 +231,7 @@
|
||||
|
||||
path = list()
|
||||
return
|
||||
|
||||
|
||||
var/target_uid = target.UID() // target can become null while path is calculated, so we need to store UID
|
||||
if(!length(path)) // No path, need a new one
|
||||
if(!isturf(target))
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
pass_flags = PASSMOB
|
||||
radio_channel = "Service" //Service
|
||||
bot_type = HONK_BOT
|
||||
bot_filter = RADIO_HONKBOT
|
||||
model = "Honkbot"
|
||||
req_access = list(ACCESS_CLOWN, ACCESS_ROBOTICS, ACCESS_MIME)
|
||||
window_id = "autohonk"
|
||||
|
||||
@@ -14,7 +14,6 @@
|
||||
radio_channel = "Medical"
|
||||
|
||||
bot_type = MED_BOT
|
||||
bot_filter = RADIO_MEDBOT
|
||||
model = "Medibot"
|
||||
bot_purpose = "seek out hurt crewmembers and ensure that they are healed"
|
||||
req_access = list(ACCESS_MEDICAL, ACCESS_ROBOTICS)
|
||||
@@ -121,7 +120,6 @@
|
||||
treatment_fire = "kelotane"
|
||||
syndicate_aligned = TRUE
|
||||
req_access = list(ACCESS_SYNDICATE)
|
||||
control_freq = BOT_FREQ + 1000 // make it not show up on lists
|
||||
radio_channel = "Syndicate"
|
||||
radio_config = list("Common" = 1, "Medical" = 1, "Syndicate" = 1)
|
||||
|
||||
|
||||
@@ -21,7 +21,6 @@
|
||||
radio_channel = "Supply"
|
||||
|
||||
bot_type = MULE_BOT
|
||||
bot_filter = RADIO_MULEBOT
|
||||
model = "MULE"
|
||||
bot_purpose = "deliver crates and other packages between departments, as requested"
|
||||
req_access = list(ACCESS_CARGO)
|
||||
|
||||
@@ -13,7 +13,6 @@
|
||||
|
||||
radio_channel = "Security" //Security channel
|
||||
bot_type = SEC_BOT
|
||||
bot_filter = RADIO_SECBOT
|
||||
model = "Securitron"
|
||||
bot_purpose = "seek out criminals, handcuff them, and report their location to security"
|
||||
req_access = list(ACCESS_SECURITY)
|
||||
|
||||
Reference in New Issue
Block a user