mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
15 lines
350 B
Plaintext
15 lines
350 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
|
|
*/
|