diff --git a/code/game/objects/items/stacks/sheets/mineral.dm b/code/game/objects/items/stacks/sheets/mineral.dm index f8e770411b4..a903ae2bb08 100644 --- a/code/game/objects/items/stacks/sheets/mineral.dm +++ b/code/game/objects/items/stacks/sheets/mineral.dm @@ -99,7 +99,6 @@ GLOBAL_LIST_INIT(sandbag_recipes, list ( \ singular_name = "diamond" sheettype = "diamond" mats_per_unit = list(/datum/material/diamond=MINERAL_MATERIAL_AMOUNT) - novariants = TRUE grind_results = list(/datum/reagent/carbon = 20) point_value = 25 merge_type = /obj/item/stack/sheet/mineral/diamond @@ -125,7 +124,6 @@ GLOBAL_LIST_INIT(diamond_recipes, list ( \ singular_name = "uranium sheet" sheettype = "uranium" mats_per_unit = list(/datum/material/uranium=MINERAL_MATERIAL_AMOUNT) - novariants = TRUE grind_results = list(/datum/reagent/uranium = 20) point_value = 20 merge_type = /obj/item/stack/sheet/mineral/uranium @@ -244,7 +242,6 @@ GLOBAL_LIST_INIT(silver_recipes, list ( \ singular_name = "bananium sheet" sheettype = "bananium" mats_per_unit = list(/datum/material/bananium=MINERAL_MATERIAL_AMOUNT) - novariants = TRUE grind_results = list(/datum/reagent/consumable/banana = 20) point_value = 50 merge_type = /obj/item/stack/sheet/mineral/bananium diff --git a/code/game/objects/items/stacks/sheets/runed_metal.dm b/code/game/objects/items/stacks/sheets/runed_metal.dm index 747e533725c..c91cd659f44 100644 --- a/code/game/objects/items/stacks/sheets/runed_metal.dm +++ b/code/game/objects/items/stacks/sheets/runed_metal.dm @@ -80,7 +80,6 @@ GLOBAL_LIST_INIT(runed_metal_recipes, list( \ mats_per_unit = list(/datum/material/runedmetal = MINERAL_MATERIAL_AMOUNT) sheettype = "runed" merge_type = /obj/item/stack/sheet/runed_metal - novariants = TRUE grind_results = list(/datum/reagent/iron = 5, /datum/reagent/blood = 15) material_type = /datum/material/runedmetal has_unique_girder = TRUE diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 385edae8bd9..c8613d24d43 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -340,7 +340,6 @@ GLOBAL_LIST_INIT(wood_recipes, list ( \ armor_type = /datum/armor/mineral_wood resistance_flags = FLAMMABLE merge_type = /obj/item/stack/sheet/mineral/wood - novariants = TRUE material_type = /datum/material/wood grind_results = list(/datum/reagent/cellulose = 20) //no lignocellulose or lignin reagents yet, walltype = /turf/closed/wall/mineral/wood diff --git a/code/game/objects/items/stacks/telecrystal.dm b/code/game/objects/items/stacks/telecrystal.dm index 5be9a13b253..248d9c97155 100644 --- a/code/game/objects/items/stacks/telecrystal.dm +++ b/code/game/objects/items/stacks/telecrystal.dm @@ -9,6 +9,7 @@ max_amount = 50 item_flags = NOBLUDGEON merge_type = /obj/item/stack/telecrystal + novariants = FALSE /obj/item/stack/telecrystal/attack(mob/target, mob/user) if(target == user) //You can't go around smacking people with crystals to find out if they have an uplink or not. diff --git a/icons/obj/ore.dmi b/icons/obj/ore.dmi index 67e3ebd416b..41f794eeace 100644 Binary files a/icons/obj/ore.dmi and b/icons/obj/ore.dmi differ diff --git a/icons/obj/stack_objects.dmi b/icons/obj/stack_objects.dmi index e2af246e215..3bc808693b3 100644 Binary files a/icons/obj/stack_objects.dmi and b/icons/obj/stack_objects.dmi differ diff --git a/icons/obj/telescience.dmi b/icons/obj/telescience.dmi index c3f61086034..3035ce83d3e 100644 Binary files a/icons/obj/telescience.dmi and b/icons/obj/telescience.dmi differ