summaryrefslogtreecommitdiff
path: root/minecctl/misc-commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'minecctl/misc-commands.c')
-rw-r--r--minecctl/misc-commands.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/minecctl/misc-commands.c b/minecctl/misc-commands.c
index 6b70c55..c64a005 100644
--- a/minecctl/misc-commands.c
+++ b/minecctl/misc-commands.c
@@ -2,6 +2,8 @@
#include "minecctl.h"
#include "server.h"
#include "misc-commands.h"
+#include "rcon-commands.h"
+#include "mc-commands.h"
bool
do_list(struct cfg *cfg)
@@ -16,3 +18,16 @@ do_list(struct cfg *cfg)
return true;
}
+bool
+do_pcount(struct cfg *cfg)
+{
+ unsigned x, y;
+
+ if (do_rcon_pcount(cfg, &y, &x))
+ error("Rcon says %u/%u", y, x);
+
+ if (do_mc_pcount(cfg, &y, &x))
+ error("MC says %u/%u", y, x);
+
+ return true;
+}