From a2515d4795e6621998e6632d7cd0dbf3feb5ef00 Mon Sep 17 00:00:00 2001 From: Hatterhat <31829017+Hatterhat@users.noreply.github.com> Date: Thu, 2 Jan 2025 11:16:34 -0700 Subject: [PATCH] removes an errant percent while recharging the BR-38 (#88853) ## About The Pull Request The max system degradation level readout on the recharger while using the BR-38 no longer has an errant percent in the readout. ## Why It's Good For The Game It bugged me. Also I guess that if this wasn't fixed it could imply that the degradation states are percentage based when they're not. ## Changelog :cl: spellcheck: Removed an errant typo on the recharger's readout while recharging the BR-38. /:cl: Co-authored-by: Hatterhat --- code/game/machinery/recharger.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/recharger.dm b/code/game/machinery/recharger.dm index 226e19bfe84..1a463407552 100644 --- a/code/game/machinery/recharger.dm +++ b/code/game/machinery/recharger.dm @@ -58,7 +58,7 @@ return if(istype(charging, /obj/item/gun/ballistic/automatic/battle_rifle)) var/obj/item/gun/ballistic/automatic/battle_rifle/recalibrating_gun = charging - . += span_notice("- \The [charging]'s system degradation is at stage [recalibrating_gun.degradation_stage] of [recalibrating_gun.degradation_stage_max]%.") + . += span_notice("- \The [charging]'s system degradation is at stage [recalibrating_gun.degradation_stage] of [recalibrating_gun.degradation_stage_max].") . += span_notice("- \The [charging]'s degradation buffer is at [PERCENT(recalibrating_gun.shots_before_degradation/recalibrating_gun.max_shots_before_degradation)]%.") return . += span_notice("- \The [charging] is not reporting a power level.")