We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e83f43f commit 1bbc579Copy full SHA for 1bbc579
code/unit_tests/equipment_tests.dm
@@ -55,7 +55,7 @@
55
56
for(var/storage_type in typesof(/obj))
57
var/obj/thing = storage_type
58
- if(TYPE_IS_ABSTRACT(thing) || !ispath(initial(thing.storage), /datum/storage))
+ if(!TYPE_IS_SPAWNABLE(thing) || !ispath(initial(thing.storage), /datum/storage))
59
continue
60
thing = new thing //should be fine to put it in nullspace...
61
var/bad_msg = "[ascii_red]--------------- [thing.name] \[[thing.type] | [thing.storage]\]"
mods/content/polaris/datum/materials.dm
@@ -6,4 +6,5 @@
6
/decl/material/solid/organic/plantmatter/grass/sif
7
name = "sifmoss"
8
color = "#447171"
9
+ uid = "mat_solid_sifmoss"
10
dug_drop_type = /obj/item/stack/material/bundle
0 commit comments