mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 00:38:21 +00:00
Merge pull request #168 from WizardJesse1/patch-14
Fix PlayerAction order
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user