Skip to content

Commit 1bbc579

Browse files
Fixes to pass CI.
1 parent e83f43f commit 1bbc579

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

code/unit_tests/equipment_tests.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656
for(var/storage_type in typesof(/obj))
5757
var/obj/thing = storage_type
58-
if(TYPE_IS_ABSTRACT(thing) || !ispath(initial(thing.storage), /datum/storage))
58+
if(!TYPE_IS_SPAWNABLE(thing) || !ispath(initial(thing.storage), /datum/storage))
5959
continue
6060
thing = new thing //should be fine to put it in nullspace...
6161
var/bad_msg = "[ascii_red]--------------- [thing.name] \[[thing.type] | [thing.storage]\]"

mods/content/polaris/datum/materials.dm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
/decl/material/solid/organic/plantmatter/grass/sif
77
name = "sifmoss"
88
color = "#447171"
9+
uid = "mat_solid_sifmoss"
910
dug_drop_type = /obj/item/stack/material/bundle

0 commit comments

Comments
 (0)