mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-15 20:52:07 +00:00
Remove stray . and ..()
This commit is contained in:
@@ -1220,7 +1220,7 @@ proc/admin_notice(var/message, var/rights)
|
||||
out += "<b>Autotraitor <a href='?src=\ref[ticker.mode];toggle=autotraitor'>disabled</a></b>.<br/>"
|
||||
|
||||
out += "<b>All antag ids:</b>"
|
||||
if(ticker.mode.antag_templates && ticker.mode.antag_templates.len).
|
||||
if(ticker.mode.antag_templates && ticker.mode.antag_templates.len)
|
||||
for(var/datum/antagonist/antag in ticker.mode.antag_templates)
|
||||
antag.update_current_antag_max()
|
||||
out += " <a href='?src=\ref[ticker.mode];debug_antag=[antag.id]'>[antag.id]</a>"
|
||||
|
||||
@@ -28,11 +28,7 @@ var/datum/admin_secrets/admin_secrets = new()
|
||||
/datum/admin_secret_category
|
||||
var/name = ""
|
||||
var/desc = ""
|
||||
var/list/datum/admin_secret_item/items
|
||||
|
||||
/datum/admin_secret_category
|
||||
..()
|
||||
items = list()
|
||||
var/list/datum/admin_secret_item/items = list()
|
||||
|
||||
/datum/admin_secret_category/proc/can_view(var/mob/user)
|
||||
for(var/datum/admin_secret_item/item in items)
|
||||
|
||||
@@ -99,7 +99,6 @@
|
||||
slot_l_hand_str = "engiewelding",
|
||||
slot_r_hand_str = "engiewelding",
|
||||
)
|
||||
.
|
||||
|
||||
/*
|
||||
* Cakehat
|
||||
|
||||
@@ -106,8 +106,6 @@
|
||||
/obj/item/rig_module/self_destruct
|
||||
)
|
||||
|
||||
..()
|
||||
|
||||
/obj/item/clothing/gloves/gauntlets/rig/light/ninja
|
||||
name = "insulated gloves"
|
||||
siemens_coefficient = 0
|
||||
|
||||
@@ -519,28 +519,21 @@
|
||||
|
||||
/obj/machinery/cash_register/command
|
||||
account_to_connect = "Command"
|
||||
..()
|
||||
|
||||
/obj/machinery/cash_register/medical
|
||||
account_to_connect = "Medical"
|
||||
..()
|
||||
|
||||
/obj/machinery/cash_register/engineering
|
||||
account_to_connect = "Engineering"
|
||||
..()
|
||||
|
||||
/obj/machinery/cash_register/science
|
||||
account_to_connect = "Science"
|
||||
..()
|
||||
|
||||
/obj/machinery/cash_register/security
|
||||
account_to_connect = "Security"
|
||||
..()
|
||||
|
||||
/obj/machinery/cash_register/cargo
|
||||
account_to_connect = "Cargo"
|
||||
..()
|
||||
|
||||
/obj/machinery/cash_register/civilian
|
||||
account_to_connect = "Civilian"
|
||||
..()
|
||||
account_to_connect = "Civilian"
|
||||
@@ -401,28 +401,21 @@
|
||||
|
||||
/obj/item/device/retail_scanner/command
|
||||
account_to_connect = "Command"
|
||||
..()
|
||||
|
||||
/obj/item/device/retail_scanner/medical
|
||||
account_to_connect = "Medical"
|
||||
..()
|
||||
|
||||
/obj/item/device/retail_scanner/engineering
|
||||
account_to_connect = "Engineering"
|
||||
..()
|
||||
|
||||
/obj/item/device/retail_scanner/science
|
||||
account_to_connect = "Science"
|
||||
..()
|
||||
|
||||
/obj/item/device/retail_scanner/security
|
||||
account_to_connect = "Security"
|
||||
..()
|
||||
|
||||
/obj/item/device/retail_scanner/cargo
|
||||
account_to_connect = "Cargo"
|
||||
..()
|
||||
|
||||
/obj/item/device/retail_scanner/civilian
|
||||
account_to_connect = "Civilian"
|
||||
..()
|
||||
account_to_connect = "Civilian"
|
||||
@@ -377,7 +377,7 @@
|
||||
return
|
||||
|
||||
// Check if we should even bother working on the current seed datum.
|
||||
if(seed.mutants. && seed.mutants.len && severity > 1)
|
||||
if(seed.mutants && seed.mutants.len && severity > 1)
|
||||
mutate_species()
|
||||
return
|
||||
|
||||
|
||||
@@ -1153,7 +1153,7 @@
|
||||
if(LAZYLEN(species.descriptors))
|
||||
descriptors = list()
|
||||
for(var/desctype in species.descriptors)
|
||||
var/datum/mob_descriptor.descriptor = species.descriptors[desctype]
|
||||
var/datum/mob_descriptor/descriptor = species.descriptors[desctype]
|
||||
descriptors[desctype] = descriptor.default_value
|
||||
|
||||
spawn(0)
|
||||
|
||||
@@ -56,7 +56,6 @@ var/global/list/rad_collectors = list()
|
||||
else
|
||||
to_chat(user, "<font color='red'>The controls are locked!</font>")
|
||||
return
|
||||
..()
|
||||
|
||||
|
||||
/obj/machinery/power/rad_collector/attackby(obj/item/W, mob/user)
|
||||
|
||||
Reference in New Issue
Block a user