use of net.minecraft.village.VillageCollection in project clientcommands by Earthcomputer.
the class ClientVirtualWorldMulti method init.
@Override
public World init() {
mapStorage = delegate.getMapStorage();
worldScoreboard = delegate.getScoreboard();
lootTable = delegate.getLootTableManager();
advancementManager = delegate.getAdvancementManager();
String villageCollectionName = VillageCollection.fileNameForProvider(provider);
villageCollection = new VillageCollection(this);
perWorldStorage.setData(villageCollectionName, villageCollection);
initCapabilities();
return this;
}
Aggregations