From 09d2bda2304b3064fc7897723e3ca59774b9ad13 Mon Sep 17 00:00:00 2001 From: Paxilmaniac Date: Sat, 29 Jun 2024 12:36:40 -0400 Subject: [PATCH] fixes some poorly named paths --- .../modules/fantasystation_content/crafting/walls.dm | 12 ++++++------ code/modules/fantasystation_content/crafting/wood.dm | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/code/modules/fantasystation_content/crafting/walls.dm b/code/modules/fantasystation_content/crafting/walls.dm index 7d7eb1a9b8a57..0b6ebf57484a8 100644 --- a/code/modules/fantasystation_content/crafting/walls.dm +++ b/code/modules/fantasystation_content/crafting/walls.dm @@ -1,4 +1,4 @@ -/turf/closed/wall/fanasystation +/turf/closed/wall/fantasystation name = "wall" desc = "A huge chunk of { SPACE INTENTIONALLY LEFT BLANK } used to separate rooms." icon = 'icons/obj/fantasystation_obj/walls/swamp_log.dmi' @@ -18,10 +18,10 @@ /// What sound the wall makes when dismantled var/dismantle_sound = SFX_TREE_CHOP -/turf/closed/wall/fanasystation/deconstruction_hints(mob/user) +/turf/closed/wall/fantasystation/deconstruction_hints(mob/user) return span_notice("The logs could probably be hacked apart with an axe.") -/turf/closed/wall/fanasystation/dismantle_wall(devastated = FALSE, explode = FALSE) +/turf/closed/wall/fantasystation/dismantle_wall(devastated = FALSE, explode = FALSE) if(devastated) devastate_wall() else @@ -40,7 +40,7 @@ ScrapeAway() QUEUE_SMOOTH_NEIGHBORS(src) -/turf/closed/wall/fanasystation/try_decon(obj/item/attacking_item, mob/user) +/turf/closed/wall/fantasystation/try_decon(obj/item/attacking_item, mob/user) if(attacking_item.tool_behaviour != TOOL_AXE) return FALSE if(!attacking_item.tool_start_check(user, amount=round(slicing_duration / 50))) @@ -57,7 +57,7 @@ /// Now for the actual walls, starting with logs -/turf/closed/wall/fanasystation/log +/turf/closed/wall/fantasystation/log name = "log wall" desc = "A stack of logs set in the ground to keep the outside out, and the inside in." icon = 'icons/obj/fantasystation_obj/walls/log.dmi' @@ -65,7 +65,7 @@ base_icon_state = "log" sheet_type = /obj/item/stack/fantasy_logs -/turf/closed/wall/fanasystation/log/swamp +/turf/closed/wall/fantasystation/log/swamp name = "swamp log wall" icon = 'icons/obj/fantasystation_obj/walls/swamp_log.dmi' icon_state = "swamp_log-0" diff --git a/code/modules/fantasystation_content/crafting/wood.dm b/code/modules/fantasystation_content/crafting/wood.dm index a2287ca70bf0b..a84413c69c052 100644 --- a/code/modules/fantasystation_content/crafting/wood.dm +++ b/code/modules/fantasystation_content/crafting/wood.dm @@ -1,11 +1,11 @@ GLOBAL_LIST_INIT(log_recipes, list( new/datum/stack_recipe("palisade", /obj/structure/railing/fantasy_palisade, 2, time = 3 SECONDS, crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_CHECK_DIRECTION | CRAFT_ON_SOLID_GROUND, category = CAT_STRUCTURE), - new/datum/stack_recipe("wall", /turf/closed/wall/fanasystation/log, 3, time = 5 SECONDS, crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_ON_SOLID_GROUND, category = CAT_STRUCTURE), + new/datum/stack_recipe("wall", /turf/closed/wall/fantasystation/log, 3, time = 5 SECONDS, crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_ON_SOLID_GROUND, category = CAT_STRUCTURE), )) GLOBAL_LIST_INIT(swamp_log_recipes, list( new/datum/stack_recipe("palisade", /obj/structure/railing/fantasy_palisade/swamp, 2, time = 3 SECONDS, crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_CHECK_DIRECTION | CRAFT_ON_SOLID_GROUND, category = CAT_STRUCTURE), - new/datum/stack_recipe("wall", /turf/closed/wall/fanasystation/log/swamp, 3, time = 5 SECONDS, crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_ON_SOLID_GROUND, category = CAT_STRUCTURE), + new/datum/stack_recipe("wall", /turf/closed/wall/fantasystation/log/swamp, 3, time = 5 SECONDS, crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_ON_SOLID_GROUND, category = CAT_STRUCTURE), )) /obj/item/stack/fantasy_logs