Skip to content

Commit 3503ffe

Browse files
committed
2.1.0
refactor: field name
1 parent 4ef0e8c commit 3503ffe

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ loader_version=0.17.3
99
parchment_version=2025.10.12
1010

1111
# Mod Properties
12-
version=2.1.0-beta.1
12+
version=2.1.0
1313
group=com.fix3dll
1414
buildNumber=0
1515

src/main/java/com/fix3dll/skyblockaddons/mixin/hooks/WakeParticleHook.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ public class WakeParticleHook {
1919
private static final List<TextureAtlasSprite> sprites;
2020

2121
static {
22-
TextureAtlas blockAtlas = MC.getAtlasManager().getAtlasOrThrow(Atlases.PARTICLES);
22+
TextureAtlas sbaAtlas = MC.getAtlasManager().getAtlasOrThrow(Atlases.PARTICLES);
2323
sprites = List.of(
24-
blockAtlas.getSprite(SkyblockAddons.resourceLocation("blank_splash/0")),
25-
blockAtlas.getSprite(SkyblockAddons.resourceLocation("blank_splash/1")),
26-
blockAtlas.getSprite(SkyblockAddons.resourceLocation("blank_splash/2")),
27-
blockAtlas.getSprite(SkyblockAddons.resourceLocation("blank_splash/3"))
24+
sbaAtlas.getSprite(SkyblockAddons.resourceLocation("blank_splash/0")),
25+
sbaAtlas.getSprite(SkyblockAddons.resourceLocation("blank_splash/1")),
26+
sbaAtlas.getSprite(SkyblockAddons.resourceLocation("blank_splash/2")),
27+
sbaAtlas.getSprite(SkyblockAddons.resourceLocation("blank_splash/3"))
2828
);
2929
}
3030

src/main/resources/data.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"bannerImageURL": null,
33
"bannerLink": null,
44
"updateInfo": {
5-
"latestRelease": "2.0.2",
5+
"latestRelease": "2.1.0",
66
"releaseDownload": "https://modrinth.com/project/F35D4vTL/versions",
77
"releaseChangelog": "https://modrinth.com/project/F35D4vTL/changelog",
88
"latestBeta": "2.1.0-beta.1",

0 commit comments

Comments
 (0)