aboutsummaryrefslogtreecommitdiff
path: root/me/Danker/TheMod.java
diff options
context:
space:
mode:
authorbowser0000 <bowser0000@gmail.com>2020-07-31 20:27:25 -0400
committerbowser0000 <bowser0000@gmail.com>2020-07-31 20:27:25 -0400
commit685fc067d3742e67b2e4bfb6f7949d62e4953eff (patch)
tree51dbd580104fc179fc6dd6e1bcf80b0ef8fe840d /me/Danker/TheMod.java
parent3a3cd409f16953d9b7392482d70f2e09f3cffb28 (diff)
downloadSkyblockMod-685fc067d3742e67b2e4bfb6f7949d62e4953eff.tar.gz
SkyblockMod-685fc067d3742e67b2e4bfb6f7949d62e4953eff.tar.bz2
SkyblockMod-685fc067d3742e67b2e4bfb6f7949d62e4953eff.zip
Add fishing stats import, move second fishing display
Right half of the fishing display was covering numbers on the left half if it was in the hundreds/thousands
Diffstat (limited to 'me/Danker/TheMod.java')
-rw-r--r--me/Danker/TheMod.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/me/Danker/TheMod.java b/me/Danker/TheMod.java
index fb304a2..6f7d525 100644
--- a/me/Danker/TheMod.java
+++ b/me/Danker/TheMod.java
@@ -19,6 +19,7 @@ import me.Danker.commands.DHelpCommand;
import me.Danker.commands.DisplayCommand;
import me.Danker.commands.GetkeyCommand;
import me.Danker.commands.GuildOfCommand;
+import me.Danker.commands.ImportFishingCommand;
import me.Danker.commands.LootCommand;
import me.Danker.commands.MoveCommand;
import me.Danker.commands.PetsCommand;
@@ -60,7 +61,7 @@ import net.minecraftforge.fml.common.versioning.DefaultArtifactVersion;
public class TheMod
{
public static final String MODID = "Danker's Skyblock Mod";
- public static final String VERSION = "1.5.6";
+ public static final String VERSION = "1.6";
static double checkItemsNow = 0;
static double itemsChecked = 0;
@@ -125,6 +126,7 @@ public class TheMod
ClientCommandHandler.instance.registerCommand(new PetsCommand());
ClientCommandHandler.instance.registerCommand(new BankCommand());
ClientCommandHandler.instance.registerCommand(new ArmourCommand());
+ ClientCommandHandler.instance.registerCommand(new ImportFishingCommand());
}
// Update checker
@@ -668,8 +670,8 @@ public class TheMod
EnumChatFormatting.AQUA + timeBetween + "\n" +
EnumChatFormatting.AQUA + bossesBetween;
- new TextRenderer(Minecraft.getMinecraft(), dropsTextTwo, moc.displayXY[0] + 130, moc.displayXY[1], Integer.parseInt("FFFFFF", 16));
- new TextRenderer(Minecraft.getMinecraft(), countTextTwo, moc.displayXY[0] + 240, moc.displayXY[1], Integer.parseInt("FFFFFF", 16));
+ new TextRenderer(Minecraft.getMinecraft(), dropsTextTwo, moc.displayXY[0] + 145, moc.displayXY[1], Integer.parseInt("FFFFFF", 16));
+ new TextRenderer(Minecraft.getMinecraft(), countTextTwo, moc.displayXY[0] + 255, moc.displayXY[1], Integer.parseInt("FFFFFF", 16));
} else if (ds.display.equals("fishingwinter")) {
dropsText = EnumChatFormatting.AQUA + "Creatures Caught:\n" +