diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-14 21:54:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-14 21:54:35 +0300 |
commit | 4e736ecaea7ec5bdaaa0ef9bb91373be8a2d1e2b (patch) | |
tree | 01865f4cafd5ea70787f97e24611155ee7160e41 | |
parent | 83018227d49168b67a58fd80f5bb415b4f78d0ff (diff) | |
download | plus-4e736ecaea7ec5bdaaa0ef9bb91373be8a2d1e2b.tar.gz plus-4e736ecaea7ec5bdaaa0ef9bb91373be8a2d1e2b.tar.bz2 plus-4e736ecaea7ec5bdaaa0ef9bb91373be8a2d1e2b.tar.xz plus-4e736ecaea7ec5bdaaa0ef9bb91373be8a2d1e2b.zip |
Add chat command for leave party.
New chat command: /leaveparty
Alias: /partyleave
-rw-r--r-- | src/actions/commands.cpp | 7 | ||||
-rw-r--r-- | src/actions/commands.h | 1 | ||||
-rw-r--r-- | src/input/inputaction.h | 1 | ||||
-rw-r--r-- | src/input/inputactionmap.h | 9 |
4 files changed, 18 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index dd93da0e8..07cd0c64e 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -46,6 +46,7 @@ #include "net/chathandler.h" #include "net/guildhandler.h" #include "net/homunculushandler.h" +#include "net/partyhandler.h" #include "net/pethandler.h" #include "net/serverfeatures.h" @@ -814,4 +815,10 @@ impHandler0(fireHomunculus) return true; } +impHandler0(leaveParty) +{ + partyHandler->leave(); + return true; +} + } // namespace Actions diff --git a/src/actions/commands.h b/src/actions/commands.h index 0aa226cb8..3b69535a3 100644 --- a/src/actions/commands.h +++ b/src/actions/commands.h @@ -80,6 +80,7 @@ namespace Actions decHandler(setPetName); decHandler(setHomunculusName); decHandler(fireHomunculus); + decHandler(leaveParty); } // namespace Actions #undef decHandler diff --git a/src/input/inputaction.h b/src/input/inputaction.h index d09099c84..e4f96d06a 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -513,6 +513,7 @@ namespace InputAction KICK_PARTY, ADD_TEXT, KICK, + LEAVE_PARTY, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index 28def4d1b..e93d6029c 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -4360,6 +4360,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputCondition::INGAME, "kick", true}, + {"keyLeaveParty", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::leaveParty, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "leaveparty|partyleave", + true}, }; #endif // INPUT_INPUTACTIONMAP_H |