Skip to content
This repository has been archived by the owner on May 16, 2022. It is now read-only.

Commit

Permalink
Added "say" to command help list
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirollos committed Sep 22, 2015
1 parent 090f73c commit f943f10
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions RCON/src/RCON.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ const std::string commands[][3] =
{"banip", "Bans the given IP from the server", "[IPv4]"},
{"unbanip", "Unbans the given IP from the server", "[IPv4]"},
{"players", "Lists the connected players with basic info", ""},
{"say", "Sends a message to the game", "[message]"},
{"servername", "Gets/Sets the server name", "get: none, set: [server name]"},
{"maxplayers", "Gets/Sets the maxplayers", "get: none, set: [slots]"},
{"serverpassword", "Gets/Sets the server password", "get: none, set: [password]"},
Expand Down
2 changes: 1 addition & 1 deletion RCON/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ extern "C"
Sleep(5000); // In need to attach debugger sometimes
#endif
strcpy(pluginInfo->szName, "RCON");
pluginInfo->uPluginVer = 0x1000;
pluginInfo->uPluginVer = 0x1001;
VCMP_PF = pluginFuncs;
VCMP_PF->printf("Initializing RCON...");

Expand Down
1 change: 0 additions & 1 deletion RCON/src/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
#include <string>
#include <fstream>
#include <map>
#include <squirrel.h>
#include <SQImports.h>
#include <VCMP.h>
#include "RCON.h"
Expand Down

0 comments on commit f943f10

Please sign in to comment.