From 97edb6c1eebc26aa28ecbabfe04d4fb76cf10f80 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Mon, 1 Jul 2024 16:05:13 +0200 Subject: [PATCH] [MIRROR] Fixes The Arcade Machine Telling You That You Don't Have Enough MP To Counterattack When You Try To Heavy Attack With Insufficient MP (#28517) * Fixes The Arcade Machine Telling You That You Don't Have Enough MP To Counterattack When You Try To Heavy Attack With Insufficient MP (#84461) ## About The Pull Request This PR fixes the arcade machine tell you that you don't have enough MP to counterattack when using the heavy attack option. Before: After: ## Why It's Good For The Game I like the arcade. I don't like bugs. ## Changelog Not worth space in CL very small change. * Fixes The Arcade Machine Telling You That You Don't Have Enough MP To Counterattack When You Try To Heavy Attack With Insufficient MP --------- Co-authored-by: Jackraxxus <60418544+Jackraxxus@users.noreply.github.com> --- code/game/machinery/computer/arcade/battle.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/computer/arcade/battle.dm b/code/game/machinery/computer/arcade/battle.dm index b97dac9e15d..9733759b5ca 100644 --- a/code/game/machinery/computer/arcade/battle.dm +++ b/code/game/machinery/computer/arcade/battle.dm @@ -505,7 +505,7 @@ return TRUE if(BATTLE_ARCADE_PLAYER_HEAVY_ATTACK) if(player_current_mp < SPELL_MP_COST) - say("You don't have enough MP to counterattack!") + say("You don't have enough MP to heavy attack!") player_turn = TRUE return TRUE player_current_mp -= SPELL_MP_COST