Fix horse crash (#433)
This commit is contained in:
parent
b06547aff4
commit
0ede4c8881
@ -163,6 +163,7 @@ public abstract class ServerPlayerMixin extends PlayerMixin implements ServerPla
|
|||||||
@Shadow(remap = false) private boolean hasTabListName;
|
@Shadow(remap = false) private boolean hasTabListName;
|
||||||
@Shadow(remap = false) private Component tabListDisplayName;
|
@Shadow(remap = false) private Component tabListDisplayName;
|
||||||
@Shadow public abstract void resetFallDistance();
|
@Shadow public abstract void resetFallDistance();
|
||||||
|
@Shadow public abstract void shadow$nextContainerCounter();
|
||||||
// @formatter:on
|
// @formatter:on
|
||||||
|
|
||||||
public String displayName;
|
public String displayName;
|
||||||
@ -671,7 +672,7 @@ public abstract class ServerPlayerMixin extends PlayerMixin implements ServerPla
|
|||||||
}
|
}
|
||||||
|
|
||||||
public int nextContainerCounter() {
|
public int nextContainerCounter() {
|
||||||
this.nextContainerCounter();
|
this.shadow$nextContainerCounter();
|
||||||
return this.containerCounter;
|
return this.containerCounter;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user