Skip to content

Commit

Permalink
Remove old image and fix gametest bug
Browse files Browse the repository at this point in the history
  • Loading branch information
MattiDragon committed Feb 10, 2024
1 parent 48b4988 commit 9a656e1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file removed .github/media/editor.png
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ default void invokeTestMethod(TestContext context, Method method) {
default NumberNode createNumberNode(Graph graph, double value) {
var node = new NumberNode(graph);
var numberNbt = new NbtCompound();
numberNbt.putString("value", "15");
numberNbt.putString("value", value + "");
node.readNbt(numberNbt);
return node;
}
Expand Down

0 comments on commit 9a656e1

Please sign in to comment.