From 708c687eeae918e4a7a4f6b6441ca0ce01b22852 Mon Sep 17 00:00:00 2001 From: TheComputerGeek2 Date: Sat, 19 May 2018 11:48:31 -0700 Subject: [PATCH] Fix parameter index error for mstore stats The error occurred when trying to check the stats of a specific coll by name. --- .../massivecraft/massivecore/cmd/CmdMassiveCoreStoreStats.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/massivecraft/massivecore/cmd/CmdMassiveCoreStoreStats.java b/src/com/massivecraft/massivecore/cmd/CmdMassiveCoreStoreStats.java index 2783f81b..8fcca8ee 100755 --- a/src/com/massivecraft/massivecore/cmd/CmdMassiveCoreStoreStats.java +++ b/src/com/massivecraft/massivecore/cmd/CmdMassiveCoreStoreStats.java @@ -33,7 +33,7 @@ public class CmdMassiveCoreStoreStats extends MassiveCoreCommand } else { - Coll coll = this.readArg(); + Coll coll = this.readArgAt(0); this.performColl(coll); } }