Fixed Player Option Order

The order for player options were wrong. It's all in the correct order now
This commit is contained in:
WizardJesse1
2016-02-07 04:18:30 -05:00
parent e4d01e6e54
commit 84dcdc0761
+4 -4
View File
@@ -18,10 +18,10 @@ class PlayerAction
end
ATTACK_ACTION = PlayerAction.new(:third, true, 'Attack')
CHALLENGE_ACTION = PlayerAction.new(:third, true, 'Challenge')
TRADE_ACTION = PlayerAction.new(:fourth, true, 'Trade with')
FOLLOW_ACTION = PlayerAction.new(:fifth, true, 'Follow')
ATTACK_ACTION = PlayerAction.new(:second, true, 'Attack')
CHALLENGE_ACTION = PlayerAction.new(:second, true, 'Challenge')
FOLLOW_ACTION = PlayerAction.new(:fourth, true, 'Follow')
TRADE_ACTION = PlayerAction.new(:fifth, true, 'Trade with')
# Shows multiple context menu action for the specified player
def show_actions(player, *actions)