We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f4bc3b commit e2583b9Copy full SHA for e2583b9
src/main/java/com/falsepattern/jfunge/interpreter/instructions/fingerprints/MODE.java
@@ -75,6 +75,24 @@ public static void west(ExecutionContext ctx) {
75
public static void north(ExecutionContext ctx) {
76
ctx.IP().delta.add(0, -1, 0);
77
}
78
+
79
+ @Instr('h')
80
+ public static void high(ExecutionContext ctx) {
81
+ if (ctx.dimensions() == 3) {
82
+ ctx.IP().delta.add(0, 0, 1);
83
+ } else {
84
+ ctx.interpret('r');
85
+ }
86
87
88
+ @Instr('l')
89
+ public static void low(ExecutionContext ctx) {
90
91
+ ctx.IP().delta.add(0, 0, -1);
92
93
94
95
96
97
98
@NoArgsConstructor(access = AccessLevel.PRIVATE)
0 commit comments