mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Fix for respawning + /respawn command
- Player is automatically respawned when logging in - Added /respawn command (MC 1.7 does not fail to respawn) - Cleaned MCC command handling code, /exec is now /script
This commit is contained in:
parent
adba89794e
commit
afff1ef89e
2 changed files with 25 additions and 19 deletions
|
|
@ -549,6 +549,9 @@ namespace MinecraftClient
|
|||
if (message == null)
|
||||
message = "";
|
||||
|
||||
message.Replace("\"", "\\\"");
|
||||
message = "\"" + message + "\"";
|
||||
|
||||
try
|
||||
{
|
||||
byte[] packet_id = getVarInt(0x40);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue