mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-31 00:58:26 +01:00
Redundant As Anythings
This commit is contained in:
@@ -93,7 +93,7 @@
|
||||
var/list/players = GLOB.player_list
|
||||
if (range)
|
||||
players = list()
|
||||
for (var/mob/listening_mob as anything in hearers(range, user))
|
||||
for (var/mob/listening_mob in hearers(range, user))
|
||||
if (listening_mob.client)
|
||||
players += listening_mob
|
||||
for(var/mob/player_mob as anything in players)
|
||||
|
||||
@@ -192,7 +192,7 @@
|
||||
// autotarget if we aim at a turf
|
||||
if(isturf(target))
|
||||
var/list/targets = list()
|
||||
for(var/mob/living/possible_target as anything in orange(1, target))
|
||||
for(var/mob/living/possible_target in orange(1, target))
|
||||
if(!ismob(possible_target))
|
||||
continue
|
||||
var/datum/antagonist/ghoul/ghoul = IS_GHOUL(possible_target)
|
||||
|
||||
Reference in New Issue
Block a user