Fixed tutorial island's run tutorial not recognising the run button

This commit is contained in:
Oven Bread
2023-06-02 09:55:20 +00:00
committed by Ryan
parent d5222bad1e
commit fc9f23385f
@@ -65,7 +65,7 @@ object TutorialButtonReceiver : EventHook<ButtonClickEvent>
}
//click run button
25 -> if(event.iface == 261 && event.buttonId == 3){
25 -> if(event.iface == 261 && event.buttonId == 3 || event.iface == 750 && event.buttonId == 1){
setAttribute(entity, "tutorial:stage", 26)
TutorialStage.load(entity, 26)
}