Skip to content

Commit 1ad8f15

Browse files
committed
Fix button using the wrong type
1 parent c19ab4e commit 1ad8f15

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ mod.name=Patcher
1212
# Sets the ID of your mod that mod loaders use to recognize it.
1313
mod.id=patcher
1414
# Sets the version of your mod. Make sure to update this when you make changes according to the SemVer specification.
15-
mod.version=1.11.0-alpha.1
15+
mod.version=1.11.0-alpha.2
1616
# Sets the Maven group ID of your mod. This is effectively unused but is good practice to set regardless.
1717
mod.group=club.sk1er

src/main/java/club/sk1er/patcher/config/PatcherConfig.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1340,7 +1340,9 @@ public static int getInventoryScale() {
13401340
category = "Experimental", subcategory = "Forge",
13411341
text = "Reset"
13421342
)
1343-
public static Runnable resetCache = () -> EntrypointCaching.INSTANCE.resetCache();
1343+
public static void resetCache() {
1344+
EntrypointCaching.INSTANCE.resetCache();
1345+
}
13441346

13451347
//@Info(
13461348
// text = "Improved Skin Rendering can make some skins invisible. It requires a restart once toggled.",

0 commit comments

Comments
 (0)