diff options
author | jackpoz <giacomopoz@gmail.com> | 2014-04-28 20:50:47 +0200 |
---|---|---|
committer | jackpoz <giacomopoz@gmail.com> | 2014-04-28 20:50:47 +0200 |
commit | d0cc723d2da04142a0a64608f7b6b8131ef76fbf (patch) | |
tree | 2e22560f8f953d5dc5740664baa30f1c27038f84 | |
parent | d0fb9910dddfcb349c9007af50cd90dbe1efdf4e (diff) |
Scripts/Commands: Fix crash in ".wp modify wpadd"
Remove the old unsupported "wpadd" subcommand of ".wp modify" .
Closes #11955
-rw-r--r-- | src/server/scripts/Commands/cs_wp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Commands/cs_wp.cpp b/src/server/scripts/Commands/cs_wp.cpp index 745d674390b..6d53dbe726d 100644 --- a/src/server/scripts/Commands/cs_wp.cpp +++ b/src/server/scripts/Commands/cs_wp.cpp @@ -561,7 +561,7 @@ public: // Check // Remember: "show" must also be the name of a column! if ((show != "delay") && (show != "action") && (show != "action_chance") - && (show != "move_flag") && (show != "del") && (show != "move") && (show != "wpadd") + && (show != "move_flag") && (show != "del") && (show != "move") ) { return false; |