Skip to content

Commit

Permalink
0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
My-Name-Is-Jeff committed Feb 7, 2021
1 parent 5615b9f commit e7fb848
Show file tree
Hide file tree
Showing 5 changed files with 6 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.0.1"
version = "0.0.2"
group = "skytils.skytilsmod"
archivesBaseName = "Skytils"

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/skytils/skytilsmod/Skytils.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
public class Skytils {
public static final String MODID = "skytils";
public static final String MOD_NAME = "Skytils";
public static final String VERSION = "0.0.1";
public static final String VERSION = "0.0.2";
public static final Minecraft mc = Minecraft.getMinecraft();

public static Config config = new Config();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/skytils/skytilsmod/core/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class Config extends Vigilant {
@Property(
type = PropertyType.SWITCH,
name = "Spirit Leap Names",
description = "Shows names next to the head when you click",
description = "Shows names next to the head when you click.",
category = "Dungeons",
subcategory = "Quality of Life"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void onGuiDrawPost(GuiScreenEvent.DrawScreenEvent.Post event) {
x -= fr.getStringWidth(text) / 2;

boolean shouldDrawBkg = true;
if (Loader.isModLoaded("notenoughupdates")) {
if (Skytils.usingNEU) {
try {
Class<?> neuClass = Class.forName("io.github.moulberry.notenoughupdates.NotEnoughUpdates");
Field neuInstance = neuClass.getDeclaredField("INSTANCE");
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/mixins.skytils.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"AccessorCommandHandler",
"MixinChunk",
"MixinEntityBlaze",
"MixinGuiContainer",
"MixinModelBlaze",
"MixinNetHandlerPlayClient",
"MixinNetworkManager",
"MixinPlayerControllerMP",
"MixinRenderBlaze",
"MixinGuiContainer"
"MixinRenderBlaze"
],
"verbose": true
}

0 comments on commit e7fb848

Please sign in to comment.