diff --git a/code/ZAS/Airflow.dm b/code/ZAS/Airflow.dm index 07c7b650d1..e917ed38df 100644 --- a/code/ZAS/Airflow.dm +++ b/code/ZAS/Airflow.dm @@ -19,7 +19,7 @@ mob/proc/airflow_stun() mob/living/silicon/airflow_stun() return -mob/living/carbon/metroid/airflow_stun() +mob/living/carbon/slime/airflow_stun() return mob/living/carbon/human/airflow_stun() @@ -242,6 +242,6 @@ zone/proc/movables() . = list() for(var/turf/T in contents) for(var/atom/movable/A in T) - if(!A.simulated || A.anchored || istype(A, /obj/effect) || istype(A, /mob/aiEye)) + if(!A.simulated || A.anchored || istype(A, /obj/effect) || istype(A, /mob/eye)) continue . += A diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index 0bd074e96b..9a123c9fe0 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -834,7 +834,7 @@ proc/GaussRandRound(var/sigma,var/roundto) if(!istype(O,/obj)) continue O.loc = X for(var/mob/M in T) - if(!istype(M,/mob) || istype(M, /mob/aiEye)) continue // If we need to check for more mobs, I'll add a variable + if(!istype(M,/mob) || istype(M, /mob/eye)) continue // If we need to check for more mobs, I'll add a variable M.loc = X // var/area/AR = X.loc @@ -965,7 +965,7 @@ proc/DuplicateObject(obj/original, var/perfectcopy = 0 , var/sameloc = 0) for(var/mob/M in T) - if(!istype(M,/mob) || istype(M, /mob/aiEye)) continue // If we need to check for more mobs, I'll add a variable + if(!istype(M,/mob) || istype(M, /mob/eye)) continue // If we need to check for more mobs, I'll add a variable mobs += M for(var/mob/M in mobs) diff --git a/code/defines/procs/hud.dm b/code/defines/procs/hud.dm index e572176ef9..de219f3b0a 100644 --- a/code/defines/procs/hud.dm +++ b/code/defines/procs/hud.dm @@ -72,7 +72,7 @@ mob/proc/regular_hud_updates() //Used in the life.dm of mobs that can use HUDs. mob/proc/in_view(var/turf/T) return view(T) -/mob/aiEye/in_view(var/turf/T) +/mob/eye/in_view(var/turf/T) var/list/viewed = new for(var/mob/living/carbon/human/H in mob_list) if(get_dist(H, T) <= 7) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index aa7e8e10c5..e60a830086 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -2112,7 +2112,7 @@ if("friendai") feedback_inc("admin_secrets_fun_used",1) feedback_add_details("admin_secrets_fun_used","FA") - for(var/mob/aiEye/aE in mob_list) + for(var/mob/eye/aiEye/aE in mob_list) aE.icon_state = "ai_friend" for(var/obj/machinery/M in machines) if(istype(M, /obj/machinery/ai_status_display)) diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm index 0911a22593..c667a46934 100644 --- a/code/modules/mob/mob_helpers.dm +++ b/code/modules/mob/mob_helpers.dm @@ -415,7 +415,7 @@ It's fairly easy to fix if dealing with single letters but not so much with comp var/atom/oldeye=M.client.eye var/aiEyeFlag = 0 - if(istype(oldeye, /mob/aiEye)) + if(istype(oldeye, /mob/eye/aiEye)) aiEyeFlag = 1 var/x