Package net.minecraftforge.common.data
Class GlobalLootModifierProvider
java.lang.Object
net.minecraftforge.common.data.GlobalLootModifierProvider
- All Implemented Interfaces:
DataProvider
- Direct Known Subclasses:
GlobalLootModifiersTest.DataProvider
Provider for forge's GlobalLootModifier system. See
LootModifier
This provider only requires implementing start() and calling add(java.lang.String, T) from it.-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.data.DataProvider
DataProvider.Factory<T extends DataProvider> -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final com.google.gson.Gsonprivate final Stringprivate final PackOutputprivate booleanFields inherited from interface net.minecraft.data.DataProvider
FIXED_ORDER_FIELDS, KEY_COMPARATOR, LOGGER -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<T extends IGlobalLootModifier>
voidPasses in the data needed to create the file without any extra objects.getName()protected voidSets the "replace" key in global_loot_modifiers to true.run(CachedOutput cache) protected abstract voidstart()Calladd(java.lang.String, T)here, which will pass in the necessary information to write the jsons.
-
Field Details
-
GSON
private static final com.google.gson.Gson GSON -
output
-
modid
-
toSerialize
-
replace
private boolean replace
-
-
Constructor Details
-
GlobalLootModifierProvider
-
-
Method Details
-
replacing
protected void replacing()Sets the "replace" key in global_loot_modifiers to true. -
start
protected abstract void start()Calladd(java.lang.String, T)here, which will pass in the necessary information to write the jsons. -
run
- Specified by:
runin interfaceDataProvider
-
add
Passes in the data needed to create the file without any extra objects.- Parameters:
modifier- The name of the modifier, which will be the file name.instance- The instance to serialize
-
getName
- Specified by:
getNamein interfaceDataProvider
-