Vanilla Support
Contents
- SUPPORT WAS REMOVED IN 0.6
 - Additional Vanilla Support is available in v0.5
 - Handlers Supported
 - Commands Supported
 
SUPPORT WAS REMOVED IN 0.6
Additional Vanilla Support is available in v0.5
Handlers Supported
The following handlers are supported:
- Dungeon Loot
 - Tall Grass Drops
 - Localisation Each of these handlers can have recipes added or removed:
 
//Grass Seeds//ItemStack, Weightmods.modtweaker.addGrassSeed(<minecraft:carrot>, 10);//ItemStackmods.modtweaker.removeGrassSeed(<minecraft:wheat_seeds>);
//Dungeon Loot//ChestName, ItemStack, MinChance, MaxChance, Weightmods.modtweaker.addChestLoot("dungeonChest", <minecraft:dirt>, 2, 5, 15);//ChestName, ItemStackmods.modtweaker.removeChestLoot("dungeonChest", <minecraft:apple>);
//Localisation - You can use setLocalisation or setLocalization for you amuricans :P//LanguageCode, KEY, TEXT (The override will ONLY apply in the specified languagemods.modtweaker.setLocalisation("en_US", "nei.inventory.prev", "Past");//KEY, TEXT - You will want to use this one most of the time, it overrides no matter the languagemods.modtweaker.setLocalisation("nei.inventory.next", "Future");Commands Supported
ModTweaker introduces two commands with the vanilla support these are
/minetweaker seedsThis prints a list of all the seeds that are currently registered in tall grass to the minetweaker log
/minetweaker loot/minetweaker loot names/minetweaker loot CHESTNAMEThe first will print a list of every single loot registered to every chest type. The second prints a list of all the registered chest names The third prints just the loot for that specific chest e.g.
/minetweaker loot dungeonChestwill print all the loot in Dungeon Chests.