Skip to content

Instantly share code, notes, and snippets.

  • Balanced hammers
  • Vein mining enchantment
  • Momentum enchant (Makes you mine faster the more you mine the same block in a row)
  • Supplementaries
    • Removed the bombs (Using galosphere bombs instead)
    • Removed flax (Sack recipe uses farmer's delight canvas instead)
  • Quark
    • Uses most things from oddities except matrix enchanting, totem of holding, and the backpack
  • Removed rope (Using rope from supplementaries instead, cause that includes more features, such as rope arrows)
@Warhand
Warhand / Modlistautogen.bat
Created June 4, 2023 17:15
A simple batch file for creating a full list of the mods installed in a Modded Minecraft instance. Simply place this file into your MC directory and run it, it will create a text file with the list, as well as the date and time. This can be used to easily track the full modlist in a github project.
cd "%cd%\mods"
tree /f /a > "../Automodlist.txt"
echo "file generated"
date /t
time /t
date /t >> "../Automodlist.txt"
time /t >> "../Automodlist.txt"