forked from FabricMC/fabric
19w42a
Includes a work around for the funky rendering issues, this will need looking into some more.
This commit is contained in:
parent
ccd269cfad
commit
d2e3099f39
16 changed files with 65 additions and 26 deletions
fabric-networking-v0
|
@ -1,5 +1,5 @@
|
|||
archivesBaseName = "fabric-networking-v0"
|
||||
version = getSubprojectVersion(project, "0.1.4")
|
||||
version = getSubprojectVersion(project, "0.1.5")
|
||||
|
||||
dependencies {
|
||||
compile project(path: ':fabric-api-base', configuration: 'dev')
|
||||
|
|
|
@ -88,7 +88,7 @@ public final class PlayerStream {
|
|||
}
|
||||
|
||||
// fallback
|
||||
return watching(entity.getEntityWorld(), new ChunkPos((int) (entity.method_23317() / 16.0D), (int) (entity.method_23318() / 16.0D)));
|
||||
return watching(entity.getEntityWorld(), new ChunkPos((int) (entity.getX() / 16.0D), (int) (entity.getZ() / 16.0D)));
|
||||
}
|
||||
|
||||
public static Stream<PlayerEntity> watching(BlockEntity entity) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue