mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Fix incorrect default for new players
This commit is contained in:
parent
0b3f49e7fe
commit
8ba83934a3
1 changed files with 2 additions and 2 deletions
|
@ -116,8 +116,8 @@ public class Pony extends Living<PlayerEntity> implements Copyable<Pony>, 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));
|
||||
|
|
Loading…
Reference in a new issue