mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-04 14:01:22 +00:00
* Remove hideous inline tab indentation, and bans it in contributing guidelines * a Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> Co-authored-by: Gandalf2k15 <jzo123@hotmail.com>
10 lines
326 B
Plaintext
10 lines
326 B
Plaintext
/datum/unit_test/anchored_mobs/Run()
|
|
var/list/L = list()
|
|
for(var/i in typesof(/mob))
|
|
var/mob/M = i
|
|
if(initial(M.anchored))
|
|
L += "[i]"
|
|
if(!L.len)
|
|
return //passed!
|
|
Fail("The following mobs are defined as anchored. This is incompatible with the new move force/resist system and needs to be revised.: [L.Join(" ")]")
|