LootTableManager

Link to loottablemanager

Manager for loot tables.

An instance of this manager can be obtained via the LootManager.

These methods can only be called from the server side, so ensure that all calls are inside a level.isClientSide check or a #onlyIf side server preprocessor!

Импорт класса

Link to импорт-класса

It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

ZenScript
Copy
import crafttweaker.api.loot.table.LootTableManager;

LootTableManager is an enum. It has 1 enum constants. They are accessible using the code below.

ZenScript
Copy
LootTableManager.INSTANCE

Name: getIds

Gets the ids of all registered loot tables.

Returns: The ids of all registered loot tables.
Return Type: Set<ResourceLocation>

ZenScript
Copy
// LootTableManager.getIds() as Set<ResourceLocation>

loot.tables.getIds();

Name: getTable

Gets a table with the given name.

If no table is registered with the name, an empty table will be returned.

Returns: The found table or an empty table if not found.
Return Type: LootTable

ZenScript
Copy
// LootTableManager.getTable(name as ResourceLocation) as LootTable

loot.tables.getTable(<resource:minecraft:gameplay/cat_morning_gift>);
ПараметрТипОписание
Параметр
name
Тип
ResourceLocation
Описание
The name of the table to get.

Свойства

Link to свойства

НазваниеТипИмеет GetterИмеет SetterОписание
Название
ids
Тип
Set<ResourceLocation>
Имеет Getter
true
Имеет Setter
false
Описание
Gets the ids of all registered loot tables.