moves core to /area/ subtype, bugfix

This commit is contained in:
Kyep
2018-08-06 23:17:30 -07:00
parent d56f2105fd
commit cfce50fe8a
10 changed files with 249 additions and 244 deletions

View File

@@ -34,8 +34,8 @@
/mob/living/silicon/decoy/syndicate/depot/proc/raise_alert()
raised_alert = TRUE
var/area/syndicate_depot/depotarea = get_area(src) // Cannot use myArea or areaMaster as neither will be defined for this mob type
if(depotarea)
var/area/syndicate_depot/core/depotarea = get_area(src) // Cannot use myArea or areaMaster as neither will be defined for this mob type
if(istype(depotarea))
depotarea.increase_alert("AI Unit Offline")
else
say("Connection failure!")

View File

@@ -22,7 +22,7 @@
window_name = "Syndicate Bot Interface"
var/turf/saved_turf
var/stepsound = 'sound/mecha/mechstep.ogg'
var/area/syndicate_depot/depotarea
var/area/syndicate_depot/core/depotarea
var/raised_alert = FALSE
var/pathing_failed = FALSE
var/turf/spawn_turf

View File

@@ -78,7 +78,7 @@
stat_attack = 1
universal_speak = 1
melee_block_chance = 40
var/area/syndicate_depot/depotarea
var/area/syndicate_depot/core/depotarea
var/raised_alert = FALSE
var/alert_on_death = FALSE
var/alert_on_timeout = FALSE