From 61b18dd9d944f7709dad060c4f4ace3b14967885 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Fri, 16 Sep 2016 18:45:00 +1000 Subject: [PATCH] ZS/LS: Don't forget to save after doing a /like or /dislike. --- Commands/Fun/RateMapCmds.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Commands/Fun/RateMapCmds.cs b/Commands/Fun/RateMapCmds.cs index 59cf98f8d..0da247031 100644 --- a/Commands/Fun/RateMapCmds.cs +++ b/Commands/Fun/RateMapCmds.cs @@ -42,6 +42,7 @@ namespace MCGalaxy.Commands { if (like) p.level.Likes++; else p.level.Dislikes++; p.Game.RatedMap = true; + Level.SaveSettings(p.level); action = like ? "&aliked" : "&cdisliked"; Player.Message(p, "You have {0} %Sthis map.", action);