From 48189738e7226590961225f90064d759ef7827c2 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Mon, 5 Dec 2016 21:26:40 +1100 Subject: [PATCH] Core: Fix /store maps erroring. (Thanks RinLen) --- MCGalaxy/Economy/LevelItem.cs | 2 +- MCGalaxy/Player/Group/Group.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MCGalaxy/Economy/LevelItem.cs b/MCGalaxy/Economy/LevelItem.cs index b670607b7..8729ef59d 100644 --- a/MCGalaxy/Economy/LevelItem.cs +++ b/MCGalaxy/Economy/LevelItem.cs @@ -215,7 +215,7 @@ namespace MCGalaxy.Eco { } foreach (LevelPreset preset in Presets) { - Player.Message(p, "&6{0} %S({1}, {2}, {3}) {4}: &a{6} %S{7}", + Player.Message(p, "&6{0} %S({1}, {2}, {3}) {4}: &a{5} %S{6}", preset.name, preset.x, preset.y, preset.z, preset.type, preset.price, Server.moneys); } diff --git a/MCGalaxy/Player/Group/Group.cs b/MCGalaxy/Player/Group/Group.cs index 65956198a..643b83a45 100644 --- a/MCGalaxy/Player/Group/Group.cs +++ b/MCGalaxy/Player/Group/Group.cs @@ -62,7 +62,7 @@ namespace MCGalaxy { /// The maxblocks this group can cuboid /// The max undo this group can do /// The group full name - /// The color of the group (Not including the &) + /// The color of the group (Not including the &) /// the custom MOTD for the group /// The file path where the current players of this group are stored public Group(LevelPermission Perm, int maxB, long maxUn, string fullName, char newColor, string motd, string file, byte maps = 3, string prefix = "")