mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 22:19:30 +01:00
[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: <img src="https://i.ibb.co/QMYTzv4/Gaming-Before.png"> After: <img src="https://i.ibb.co/5WMDC9D/Gaming-After.png"> ## 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>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user