use of com.minecolonies.coremod.colony.requestsystem.resolvers.PublicWorkerCraftingProductionResolver in project minecolonies by ldtteam.
the class PublicWorkerCraftingProductionResolverFactory method deserialize.
@NotNull
@Override
public PublicWorkerCraftingProductionResolver deserialize(@NotNull final IFactoryController controller, @NotNull final CompoundNBT nbt) {
final IToken<?> token = controller.deserialize(nbt.getCompound(NBT_TOKEN));
final ILocation location = controller.deserialize(nbt.getCompound(NBT_LOCATION));
final JobEntry entry = IJobRegistry.getInstance().getValue(new ResourceLocation(nbt.getString(NBT_JOB)));
return new PublicWorkerCraftingProductionResolver(location, token, entry);
}
Aggregations