Skip to content

Commit

Permalink
Merge pull request tgstation#13726 from MrStonedOne/patch-89
Browse files Browse the repository at this point in the history
Fixes orbiting /mob/camera/
  • Loading branch information
Cheridan committed Dec 18, 2015
2 parents fbd74c7 + 7d654da commit df2c433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/__HELPERS/unsorted.dm
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ Turf and target are seperate in case you want to teleport some distance from a t

for(var/mob/M in mobs)
if(skip_mindless && (!M.mind && !M.ckey))
if(!isbot(M))
if(!isbot(M) && !istype(M, /mob/camera/))
continue
var/name = M.name
if (name in names)
Expand Down

0 comments on commit df2c433

Please sign in to comment.