mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-17 05:31:53 +00:00
* Linter diagnostics + bans non-var relative pathing * Enable DreamChecker Annotations * make it executable * update hashFiles * oops * tries to fix it... again * trying again * path * repath * fix perms * fixes weird capitalisation issue
14 lines
356 B
Plaintext
14 lines
356 B
Plaintext
//////////////////////////////Construct Spells/////////////////////////
|
|
/*
|
|
* Moved to game/gamemodes/cult/construct_spells.dm. Here for posterity.
|
|
*/
|
|
/*
|
|
/proc/findNullRod(var/atom/target)
|
|
if(istype(target,/obj/item/weapon/nullrod))
|
|
return 1
|
|
else if(target.contents)
|
|
for(var/atom/A in target.contents)
|
|
if(findNullRod(A))
|
|
return 1
|
|
return 0
|
|
*/ |