Add more info to the time command

This commit is contained in:
Spencer 2017-12-30 20:13:39 -05:00 committed by Alexander Meech
parent a68f4fd65c
commit 6bfe49d894

View File

@ -2,6 +2,7 @@ package mineplex.mapparser.command;
import org.bukkit.entity.Player;
import mineplex.core.common.util.C;
import mineplex.mapparser.MapParser;
public class TimeCommand extends BaseCommand
@ -40,7 +41,7 @@ public class TimeCommand extends BaseCommand
}
player.setPlayerTime(time, false);
message(player, "Your local player time has been updated.");
message(player, "Your local player time has been updated to " + C.cYellow + time + C.mBody + ".");
return true;
}
}