Files
CHOMPStation2/code/modules/spells/construct_spells.dm
2024-09-30 21:36:41 +02:00

14 lines
349 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/nullrod))
return 1
else if(target.contents)
for(var/atom/A in target.contents)
if(findNullRod(A))
return 1
return 0
*/