From 0eedff8cc28312b1bd4d3f7fcc92fb4105df4aeb Mon Sep 17 00:00:00 2001 From: Amy <3855802+amylizzle@users.noreply.github.com> Date: Sat, 15 Feb 2025 13:04:51 +0000 Subject: [PATCH] Apply suggestions from code review Co-authored-by: TobleroneSwordfish <20713227+TobleroneSwordfish@users.noreply.github.com> --- code/modules/materials/Mat_FabRecipes.dm | 4 ++-- code/obj/nuclearreactor/turbine.dm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/materials/Mat_FabRecipes.dm b/code/modules/materials/Mat_FabRecipes.dm index 19fa48307a9f1..f5cc1cd3d6db9 100644 --- a/code/modules/materials/Mat_FabRecipes.dm +++ b/code/modules/materials/Mat_FabRecipes.dm @@ -78,14 +78,14 @@ name = "Turbine Blade" desc = "A replacement blade for the reactor turbine" category = "Nuclear" - materials = list("!any"=2) + materials = list("!any"=5) result = /obj/item/turbine_component/blade /datum/matfab_recipe/simple/turbine/stator name = "Turbine Stator" desc = "A replacement stator coil for the reactor turbine" category = "Nuclear" - materials = list("!any"=2) + materials = list("!any"=3) result = /obj/item/turbine_component/stator /datum/matfab_recipe/spacesuit diff --git a/code/obj/nuclearreactor/turbine.dm b/code/obj/nuclearreactor/turbine.dm index d868082efb71b..116f609b917a9 100644 --- a/code/obj/nuclearreactor/turbine.dm +++ b/code/obj/nuclearreactor/turbine.dm @@ -378,7 +378,7 @@ return if(I:try_weld(user,1)) if(src.ruined || src.blade_health < src.max_blade_health) - user.visible_message("[user] attempts to repair some damage to the [src]", "you start to repair the [src]") + user.visible_message("[user] attempts to repair some damage to the [src]", "You start to repair the [src]") var/datum/action/bar/icon/callback/A = new(user, src, 1 SECONDS, PROC_REF(weld_repair_callback), list(user), user.equipped().appearance, null, \ "", INTERRUPT_ACTION | INTERRUPT_MOVE | INTERRUPT_STUNNED | INTERRUPT_ACT) A.maximum_range=3 //should action bar used bounds_dist? idk probably @@ -390,7 +390,7 @@ if(src.RPM > 1) boutput(user, SPAN_ALERT("you cannot replace turbine components while the turbine is spinning!")) else - user.visible_message("[user] begins replacing a turbine component", "you begin replacing a turbine component") + user.visible_message("[user] begins replacing a turbine component", "You begin replacing a turbine component") var/datum/action/bar/icon/callback/A = new(user, src, 4 SECONDS, PROC_REF(component_replace_callback), list(user,I), I.appearance, null, \ "", INTERRUPT_ACTION | INTERRUPT_MOVE | INTERRUPT_STUNNED | INTERRUPT_ACT) A.maximum_range=3 //should action bar used bounds_dist? idk probably