From 8ba83934a349cea564026c545939d268eb08adb8 Mon Sep 17 00:00:00 2001 From: Sollace Date: Sat, 25 May 2024 15:54:32 +0100 Subject: [PATCH] Fix incorrect default for new players --- .../java/com/minelittlepony/unicopia/entity/player/Pony.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/minelittlepony/unicopia/entity/player/Pony.java b/src/main/java/com/minelittlepony/unicopia/entity/player/Pony.java index c876668e..afdead15 100644 --- a/src/main/java/com/minelittlepony/unicopia/entity/player/Pony.java +++ b/src/main/java/com/minelittlepony/unicopia/entity/player/Pony.java @@ -116,8 +116,8 @@ public class Pony extends Living implements Copyable, Update sender.accept(Channel.SERVER_PLAYER_CAPABILITIES.toPacket(new MsgPlayerCapabilities(this))); } }); - race = this.tracker.startTracking(Race.TRACKABLE_TYPE, Race.HUMAN); - suppressedRace = this.tracker.startTracking(Race.TRACKABLE_TYPE, Race.HUMAN); + race = this.tracker.startTracking(Race.TRACKABLE_TYPE, Race.UNSET); + suppressedRace = this.tracker.startTracking(Race.TRACKABLE_TYPE, Race.UNSET); this.levels = new PlayerLevelStore(this, tracker, true, USounds.Vanilla.ENTITY_PLAYER_LEVELUP); this.corruption = new PlayerLevelStore(this, tracker, false, USounds.ENTITY_PLAYER_CORRUPTION); this.mana = addTicker(new ManaContainer(this, tracker));