diff options
-rw-r--r-- | game/gui/battle.rpy | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/game/gui/battle.rpy b/game/gui/battle.rpy index 7f77bd9..054f66b 100644 --- a/game/gui/battle.rpy +++ b/game/gui/battle.rpy @@ -371,7 +371,10 @@ screen battle(): hbox: xalign 1.0 yalign 0.0 - textbutton _("I'm ready") action Return() + button: + text _("I'm ready"): + outlines [(1,"#333",0,0)] + action Return() |