Remove GSON

This commit is contained in:
catfoolyou
2025-02-06 12:38:30 -05:00
parent a8c62a3984
commit bf43d47631
73 changed files with 120 additions and 2490 deletions

View File

@@ -15,7 +15,6 @@ import net.minecraft.src.AxisAlignedBB;
import net.minecraft.src.CallableIsServerModded;
import net.minecraft.src.CallableServerMemoryStats;
import net.minecraft.src.CallableServerProfiler;
import net.minecraft.src.ChatMessageComponent;
import net.minecraft.src.ChunkCoordinates;
import net.minecraft.src.CommandBase;
import net.minecraft.src.ConvertingProgressUpdate;
@@ -905,9 +904,9 @@ public abstract class MinecraftServer implements ICommandSender, Runnable, IPlay
return "Server";
}
public void sendChatToPlayer(ChatMessageComponent par1ChatMessageComponent)
public void sendChatToPlayer(String par1ChatMessageComponent)
{
this.getLogAgent().logInfo(par1ChatMessageComponent.toString());
this.getLogAgent().logInfo(par1ChatMessageComponent);
}
/**