Skip to content

Commit

Permalink
Alpha 9
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterCheezeCake committed Jan 7, 2025
1 parent 3088f3a commit 06c1234
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ archives_base_name=SkyblockTweaks
loader_version=0.16.7

# Mod Properties
mod_version=0.1.0-Alpha.8
mod_version=0.1.0-Alpha.9
# mod_version = Unstable


2 changes: 1 addition & 1 deletion src/main/java/wtf/cheeze/sbt/SkyblockTweaks.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class SkyblockTweaks implements ModInitializer {
public static final SkyblockData DATA = new SkyblockData();
public static final PersistentData PD = PersistentData.load();
public static final ArrayList<HUD> HUDS = new ArrayList<HUD>();
public static final Version VERSION = new Version(Version.VersionType.ALPHA, 0, 1, 0, 8);
public static final Version VERSION = new Version(Version.VersionType.ALPHA, 0, 1, 0, 9);
public static final MinecraftClient mc = MinecraftClient.getInstance();


Expand Down
4 changes: 2 additions & 2 deletions src/main/java/wtf/cheeze/sbt/features/huds/TickerHUD.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ public static class Config {
public boolean enabled = false;

@SerialEntry // Not handled by YACL Gui
public float x = 0;
public float x = 0.1f;

@SerialEntry // Not handled by YACL Gui
public float y = 0.9f;
public float y = 0.1f;

@SerialEntry
public float scale = 1.0f;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/wtf/cheeze/sbt/hud/bases/BarHUD.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void render(DrawContext context, boolean fromHudScreen, boolean hovered)
context.setShaderColor(1.0f, 1.0f, 1.0f, 1.0f);
RenderUtils.endScale(context);
}
*///?} else {
*///?} else {

if (bounds.scale == 1.0f) {
var color = INFO.getColor.get();
Expand Down

0 comments on commit 06c1234

Please sign in to comment.