Skip to content

Commit 3e72f82

Browse files
committed
Hypertale 0.0.6
1 parent e7e1300 commit 3e72f82

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ org.gradle.parallel=true
44
org.gradle.jvmargs=-Xmx1024m -XX:-UseGCOverheadLimit -Dfile.encoding=UTF-8
55
org.gradle.java.installations.auto-download=true
66
# Hypertale properties
7-
hypertale.version=0.0.5
7+
hypertale.version=0.0.6
88
hypertale.init=1
99

1010
# https://plugins.gradle.org/plugin/net.ltgt.errorprone

patcher/src/main/java/com/fox2code/hypertale/patcher/patches/PatchPlayer.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ final class PatchPlayer extends HypertalePatch {
3434

3535
@Override
3636
public ClassNode transform(ClassNode classNode) {
37+
classNode.access |= TransformerUtils.ACC_COMPUTE_FRAMES;
3738
final FieldNode hypertalePlayer = new FieldNode(Opcodes.ACC_PRIVATE | Opcodes.ACC_FINAL,
3839
"hypertalePlayer", "L" + HypertalePlayer + ";", null, null);
3940
classNode.fields.add(hypertalePlayer);

0 commit comments

Comments
 (0)