Skip to content

Commit

Permalink
0.1.2-pre8
Browse files Browse the repository at this point in the history
  • Loading branch information
My-Name-Is-Jeff committed Mar 30, 2021
1 parent b53e45f commit 2a2bc2f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ buildscript {
apply plugin: "net.minecraftforge.gradle.forge"
apply plugin: "org.spongepowered.mixin"

version = "0.1.2-pre7"
version = "0.1.2-pre8"
group = "skytils.skytilsmod"
archivesBaseName = "Skytils"

Expand Down
9 changes: 5 additions & 4 deletions src/main/java/skytils/skytilsmod/Skytils.java
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
package skytils.skytilsmod;

import club.sk1er.mods.core.ModCore;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.GuiIngameMenu;
import net.minecraft.command.ICommand;
import net.minecraft.network.play.client.C01PacketChatMessage;
import net.minecraft.world.gen.structure.StructureBoundingBox;
import net.minecraftforge.client.ClientCommandHandler;
import net.minecraftforge.client.event.GuiScreenEvent;
import net.minecraftforge.client.event.RenderGameOverlayEvent;
Expand Down Expand Up @@ -52,13 +50,16 @@
import skytils.skytilsmod.utils.graphics.ScreenRenderer;

import java.io.File;
import java.util.*;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Map;
import java.util.Objects;

@Mod(modid = Skytils.MODID, name = Skytils.MOD_NAME, version = Skytils.VERSION, acceptedMinecraftVersions = "[1.8.9]", clientSideOnly = true)
public class Skytils {
public static final String MODID = "skytils";
public static final String MOD_NAME = "Skytils";
public static final String VERSION = "0.1.2-pre7";
public static final String VERSION = "0.1.2-pre8";
public static final Minecraft mc = Minecraft.getMinecraft();

public static Config config = new Config();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ public void processCommand(ICommandSender sender, String[] args) throws CommandE
" §2§l ❣ §7§oCommands marked with a §a§o✯ §7§orequire an §f§oAPI key§7§o to work correctly." + "\n" +
" §2§l ❣ §7§oThe current mod version is §f§o" + Skytils.VERSION + "§7§o." + "\n" +
"§9§l➜ Setup:" + "\n" +
" §3/skytils §l➡ §bOpens the main mod configuration GUI." + "\n" +
" §3/skytils §l➡ §bOpens the main mod GUI." + "\n" +
" §3/skytils config §l➡ §bOpens the configuration GUI." + "\n" +
" §3/skytils setkey §l➡ §bSets your Hypixel API key." + "\n" +
" §3/skytils help §l➡ §bShows this help menu." + "\n" +
" §3/skytils reload <aliases/data> §l➡ §bForces a refresh of command aliases or solutions from the data repository." + "\n" +
Expand Down

0 comments on commit 2a2bc2f

Please sign in to comment.