Files
09ca00334b [IDB IGNORE] [MDB IGNORE] Poi template generation and some turf repathing (#5306)
## About The Pull Request

Working on some generic templates and starting to cut down on the planet
specific turfs which are in use.

## Why It's Good For The Game

More POI's and more content! 

## Changelog


🆑
add: New generic POI's 
tweak: Turf pathing
/🆑

---------

Co-authored-by: LordME <58342752+TheLordME@users.noreply.github.com>
2024-08-27 05:14:45 -07:00

12 lines
338 B
Plaintext

/datum/unit_test/access_datums/Run()
var/list/lookup_ids = list()
for(var/path in subtypesof(/datum/access))
var/datum/access/A = path
if(initial(A.abstract_type) == path)
continue
var/id = num2text(initial(A.access_value))
if(lookup_ids[id])
Fail("Collision on [A] and [lookup_ids[id]]")
continue
lookup_ids[id] = A