[MIRROR] [NO GBP] fixes some silly stairs slipups [MDB IGNORE] (#16998)

* [NO GBP] fixes some silly stairs slipups (#70628)

Two things:
Stone stairs didn't actually line up, not a soul would have noticed because mappers probably aren't gonna use it for a while, but I fixed it anyways.

Second, you could still build mat datum stairs freely without the whole frame system, invalidating its existence, so I've fixed that too. You can still build mat datum stairs, you just need a stairs frame made of iron or wood first.

* [NO GBP] fixes some silly stairs slipups

Co-authored-by: Paxilmaniac <82386923+Paxilmaniac@users.noreply.github.com>
This commit is contained in:
SkyratBot
2022-10-19 19:56:54 +02:00
committed by GitHub
parent 76b73f6498
commit 7a2a31fb35
2 changed files with 0 additions and 1 deletions

View File

@@ -31,7 +31,6 @@ SUBSYSTEM_DEF(materials)
///List of stackcrafting recipes for materials using rigid recipes
var/list/rigid_stack_recipes = list(
new /datum/stack_recipe("Carving block", /obj/structure/carving_block, 5, one_per_turf = TRUE, on_solid_ground = TRUE, applies_mats = TRUE),
new /datum/stack_recipe("Material Stairs", /obj/structure/stairs/material, 10, time = 10 SECONDS, one_per_turf = TRUE, on_solid_ground = TRUE, applies_mats = TRUE),
)
///Ran on initialize, populated the materials and materials_by_category dictionaries with their appropiate vars (See these variables for more info)