[Suggestion] Command for Fishing Rod Strings
Yulife opened this issue ยท 1 comments
Using Modtweaker you can modify fishing loot for Mariculture. I am not quite fond on how it works yet but all I know is that it needs fishing rod strings.
These were listed in the code:
static {
rodTypes.put("net", RodType.NET);
rodTypes.put("old", RodType.OLD);
rodTypes.put("good", RodType.GOOD);
rodTypes.put("dire", RodType.DIRE);
rodTypes.put("super", RodType.SUPER);
rodTypes.put("flux", RodType.FLUX);
if (Loader.isModLoaded("AWWayofTime")) {
try {
rodTypes.put("blood", (RodType) ReflectionHelper.getStaticObject(Class.forName("mariculture.plugins.PluginBloodMagic"), "BLOOD"));
} catch (ClassNotFoundException e) {
e.printStackTrace();
As they always could change, I think it would be appropriate to have a command like /mt fishingRods or something similar.