mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-04 08:39:27 +00:00
Fixed Player Option Order
The order for player options were wrong. It's all in the correct order now
This commit is contained in:
@@ -18,10 +18,10 @@ class PlayerAction
|
|||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
ATTACK_ACTION = PlayerAction.new(:third, true, 'Attack')
|
ATTACK_ACTION = PlayerAction.new(:second, true, 'Attack')
|
||||||
CHALLENGE_ACTION = PlayerAction.new(:third, true, 'Challenge')
|
CHALLENGE_ACTION = PlayerAction.new(:second, true, 'Challenge')
|
||||||
TRADE_ACTION = PlayerAction.new(:fourth, true, 'Trade with')
|
FOLLOW_ACTION = PlayerAction.new(:fourth, true, 'Follow')
|
||||||
FOLLOW_ACTION = PlayerAction.new(:fifth, true, 'Follow')
|
TRADE_ACTION = PlayerAction.new(:fifth, true, 'Trade with')
|
||||||
|
|
||||||
# Shows multiple context menu action for the specified player
|
# Shows multiple context menu action for the specified player
|
||||||
def show_actions(player, *actions)
|
def show_actions(player, *actions)
|
||||||
|
|||||||
Reference in New Issue
Block a user