Post-Merge Fixes

This commit is contained in:
Sebastian Hartte
2020-07-19 01:09:06 +02:00
parent be4fdfed85
commit d053c9b1bc
6 changed files with 2 additions and 60 deletions
@@ -10,6 +10,7 @@ import net.fabricmc.fabric.api.client.event.lifecycle.v1.ClientTickEvents;
import net.minecraft.client.MinecraftClient;
import java.util.HashMap;
import java.util.Map;
@Environment(EnvType.CLIENT)
public class ClientTickHandler extends TickHandler {
@@ -22,7 +23,7 @@ public class ClientTickHandler extends TickHandler {
}
@Override
public HashMap<Integer, PlayerColor> getPlayerColors() {
public Map<Integer, PlayerColor> getPlayerColors() {
if (!Platform.isServer()) {
return this.cliPlayerColors;
}