Browse Source

Fix wording for command reply

Reloading the plugin doesn't work for dumping anymore.  It hasn't since
before my initial commit.
nosoop 7 years ago
parent
commit
c444d667c1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      scripting/csrd_data_dump.sp

+ 2 - 2
scripting/csrd_data_dump.sp

@@ -13,7 +13,7 @@
 #include <stocksoup/files>
 #include <stocksoup/version>
 
-#define PLUGIN_VERSION "1.1.4"
+#define PLUGIN_VERSION "1.1.5"
 public Plugin myinfo = {
 	name = "[CSRD] SRCDS Automatic Data Dumper",
 	author = "nosoop",
@@ -206,7 +206,7 @@ public Action Steam_RestartRequested() {
 public Action ForceDataDump(int client, int argc) {
 	PrepareRedump();
 	
-	ReplyToCommand(client, "[SM] Prepared dump process.  Reload plugin or restart server.");
+	ReplyToCommand(client, "[SM] Prepared dump process.  Restart server.");
 	
 	return Plugin_Continue;
 }