removed previously added debug output & fixed PING reply (PONG)
[NeonServV5.git] / IRCParser.c
index 187aeb6475263af61b46dd3110ab570a99cf17b3..622cd8a67f1b6c2d2039c6fb027885b40836abd5 100644 (file)
@@ -81,7 +81,7 @@ static IRC_CMD(raw_001) {
 
 static IRC_CMD(raw_ping) {
     if(argc == 0) return 0;
-    putsock(client, "POMG :%s", argv[0]);
+    putsock(client, "PONG :%s", argv[0]);
     return 1;
 }