mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 14:39:58 +01:00
Makes lizard skin and lizardskin items inherit their "donor's" skin color (#94751)
## About The Pull Request As title says, skin butchered from humans (currently only applies to lizardskin) now inherits their owner's skin color, and so do items (lizardskin boots and hats) made from it. Also this PR gagsifies lizardskin hats and boots for this very reason. ## Why It's Good For The Game Consistency, when you butcher a purple lizard you should get purple lizard boots. ## Changelog 🆑 add: Made lizard skin and lizardskin items inherit their "donor's" skin color /🆑
This commit is contained in:
@@ -6,13 +6,6 @@
|
||||
/datum/unit_test/stack_singular_name
|
||||
|
||||
/datum/unit_test/stack_singular_name/Run()
|
||||
var/list/blacklist = list( // all of these are generally parents that exist to be overridden; ex. /obj/item/stack/license_plates exists to branch into /filled and /empty
|
||||
/obj/item/stack/sheet,
|
||||
/obj/item/stack/sheet/mineral,
|
||||
/obj/item/stack/license_plates,
|
||||
/obj/item/stack/sheet/animalhide,
|
||||
)
|
||||
|
||||
for(var/obj/item/stack/stack_check as anything in subtypesof(/obj/item/stack) - blacklist)
|
||||
for(var/obj/item/stack/stack_check as anything in valid_subtypesof(/obj/item/stack))
|
||||
if(!initial(stack_check.singular_name))
|
||||
TEST_FAIL("[stack_check] is missing a singular name!")
|
||||
|
||||
Reference in New Issue
Block a user