Move chunk data access related stuff to storage (#2070)

I added them when I mapped entity system. They fit storage well too

Resolves Entity chunk data access must be in same package as storage stuff

Signed-off-by: liach <liach@users.noreply.github.com>

Co-authored-by: liach <liach@users.noreply.github.com>
This commit is contained in:
liach 2021-02-17 12:16:24 -06:00 committed by GitHub
parent 0605b9d9ae
commit 2c562dd296
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
CLASS net/minecraft/class_5571 net/minecraft/world/chunk/ChunkDataAccess
CLASS net/minecraft/class_5571 net/minecraft/world/storage/ChunkDataAccess
METHOD method_31758 awaitAll ()V
METHOD method_31759 readChunkData (Lnet/minecraft/class_1923;)Ljava/util/concurrent/CompletableFuture;
ARG 1 pos

View File

@ -1,4 +1,4 @@
CLASS net/minecraft/class_5566 net/minecraft/world/chunk/ChunkDataList
CLASS net/minecraft/class_5566 net/minecraft/world/storage/ChunkDataList
FIELD field_27241 pos Lnet/minecraft/class_1923;
FIELD field_27242 backingList Ljava/util/List;
METHOD <init> (Lnet/minecraft/class_1923;Ljava/util/List;)V

View File

@ -1,4 +1,4 @@
CLASS net/minecraft/class_5565 net/minecraft/world/chunk/EntityChunkDataAccess
CLASS net/minecraft/class_5565 net/minecraft/world/storage/EntityChunkDataAccess
FIELD field_27231 dataFixer Lcom/mojang/datafixers/DataFixer;
FIELD field_27232 LOGGER Lorg/apache/logging/log4j/Logger;
FIELD field_27233 world Lnet/minecraft/class_3218;