mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
11 lines
271 B
Plaintext
11 lines
271 B
Plaintext
//////////////////////////////Construct Spells/////////////////////////
|
|
|
|
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
|