Adding input for auto-mashing text

This commit is contained in:
mshirt 2019-07-02 01:01:03 -07:00
parent b27158c273
commit 629a38aff7

View file

@ -398,7 +398,7 @@ class Window_Message < Window_Selectable
end
tick
end
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL)
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL) || Input.press?(Input::R)
@skip_text = true
end
else
@ -434,7 +434,7 @@ class Window_Message < Window_Selectable
self.pause = true
# Advance/Close message
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL)
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL) || Input.press?(Input::R)
if @text.length <= 0
terminate_message
else