diff --git a/MCGalaxy/Player/Player.Handlers.cs b/MCGalaxy/Player/Player.Handlers.cs index 47d0d9d4c..4910cda6d 100644 --- a/MCGalaxy/Player/Player.Handlers.cs +++ b/MCGalaxy/Player/Player.Handlers.cs @@ -709,7 +709,7 @@ namespace MCGalaxy { bool UseCommand(Command command, string message) { string cmd = command.name; - if (!cmd.CaselessEq("pass")) { + if (!cmd.CaselessEq("pass") && !cmd.CaselessEq("lastcmd")) { lastCMD = message.Length == 0 ? cmd : cmd + " " + message; lastCmdTime = DateTime.UtcNow; Logger.Log(LogType.CommandUsage, "{0} used /{1} {2}", name, cmd, message); diff --git a/MCGalaxy/Player/Player.Login.cs b/MCGalaxy/Player/Player.Login.cs index 3cac578f5..5037da749 100644 --- a/MCGalaxy/Player/Player.Login.cs +++ b/MCGalaxy/Player/Player.Login.cs @@ -152,7 +152,7 @@ namespace MCGalaxy { Position pos = level.SpawnPos; byte yaw = level.rotx, pitch = level.roty; - OnPlayerSpawningEvent.Call(this, ref pos, ref yaw, ref pitch, true); + OnPlayerSpawningEvent.Call(this, ref pos, ref yaw, ref pitch, false); Pos = pos; SetYawPitch(yaw, pitch);