mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-23 11:15:24 +01:00
Fixes a bug that increased all button count by 1 (#1911)
This will fix an issue when the next button was not displayed when it was necessary.
This commit is contained in:
parent
ff4a7c9d61
commit
eaf2236f7f
@ -97,7 +97,7 @@ public class TemplatedPanel extends Panel
|
||||
{
|
||||
String type = String.valueOf(record.dataMap().get("type"));
|
||||
|
||||
int counter = this.typeSlotMap.computeIfAbsent(type, key -> 1);
|
||||
int counter = this.typeSlotMap.computeIfAbsent(type, key -> 0);
|
||||
this.typeSlotMap.put(type, counter + 1);
|
||||
}
|
||||
}
|
||||
@ -227,7 +227,7 @@ public class TemplatedPanel extends Panel
|
||||
{
|
||||
String type = String.valueOf(record.dataMap().get("type"));
|
||||
|
||||
int counter = this.typeSlotMap.computeIfAbsent(type, key -> 1);
|
||||
int counter = this.typeSlotMap.computeIfAbsent(type, key -> 0);
|
||||
this.typeSlotMap.put(type, counter + 1);
|
||||
}
|
||||
}
|
||||
@ -290,7 +290,7 @@ public class TemplatedPanel extends Panel
|
||||
{
|
||||
String type = String.valueOf(record.dataMap().get("type"));
|
||||
|
||||
int counter = this.typeSlotMap.computeIfAbsent(type, key -> 1);
|
||||
int counter = this.typeSlotMap.computeIfAbsent(type, key -> 0);
|
||||
this.typeSlotMap.put(type, counter + 1);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user