mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-24 16:41:48 +00:00
8 lines
310 B
Plaintext
8 lines
310 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]"
|
|
TEST_ASSERT(!L.len, "The following mobs are defined as anchored. This is incompatible with the new move force/resist system and needs to be revised.: [L.Join(" ")]")
|