We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9635779 commit f299322Copy full SHA for f299322
lib/src/multicraft/CustomConsumePayloadDynamic.java
@@ -43,13 +43,13 @@ public void display(Stats stats){
43
44
@Override
45
public void build(Building build, Table table){
46
- PayloadStack[] current = {payloads.get(build)[0]};
+ PayloadStack[][] current = {payloads.get(build)};
47
48
table.table(cont -> {
49
table.update(() -> {
50
- if(current[0] != payloads.get(build)[0]){
+ if(current[0] != payloads.get(build)){
51
rebuild(build, cont);
52
- current[0] = payloads.get(build)[0];
+ current[0] = payloads.get(build);
53
}
54
});
55
0 commit comments