Skip to content

Commit 9faa9ca

Browse files
committed
Fix StackUtil crashing server
1 parent 67f8807 commit 9faa9ca

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ authors=jaskarth, unascribed
1717
contributors=Patbox, IThundxr
1818
license=AGPL-3.0-or-later
1919
# Mod Version
20-
baseVersion=0.9.0
20+
baseVersion=0.9.1
2121
# Branch Metadata
2222
branch=fabric-26.1
2323
tagBranch=fabric-26.1

src/main/java/net/modfest/fireblanket/stacksmash/StackUtil.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package net.modfest.fireblanket.stacksmash;
22

3-
import com.mojang.blaze3d.vertex.PoseStack;
43
import com.mojang.logging.LogUtils;
54
import net.modfest.fireblanket.config.ConfigSpecs;
65
import net.modfest.fireblanket.config.FireblanketConfig;
@@ -39,14 +38,14 @@ public final class StackUtil {
3938
* Mod classes that are known to wrap push/pop.
4039
**/
4140
private static final Set<String> knownSkippableClassNames = Set.of(
42-
"com.unascribed.ears.common.render.AbstractEarsRenderDelegate"
41+
"com.unascribed.ears.common.render.AbstractEarsRenderDelegate",
42+
"com.mojang.blaze3d.vertex.PoseStack"
4343
);
4444

4545
/**
4646
* Vanilla or Fireblanket classes that are known to wrap push/pop.
4747
*/
4848
private static final Set<Class<?>> knownSkippableClasses = Set.of(
49-
PoseStack.class
5049
);
5150

5251
/**

0 commit comments

Comments
 (0)