- fixed block generation missing face
https://github.com/LoneDev6/ItemsAdder/issues/157
- fixed music disc bug
https://github.com/LoneDev6/ItemsAdder/issues/156
- fixed 2x2 inventory crafting allowed to craft vanilla items with custom items
https://github.com/LoneDev6/ItemsAdder/issues/159
- fixed converter bug which resets items amount to 1
https://github.com/LoneDev6/ItemsAdder/issues/163
- fixed concurrent write on NBT files:
https://github.com/LoneDev6/ItemsAdder/issues/164
- now IA won't crash server if a corrupted NBT file is loaded
API:
- new API method: areItemsLoaded() use it to know when IA has finished loading every item and when they are available
dirty usage example:
Code (Java):
Bukkit.
getServer
(
).
getScheduler
(
).
runTaskAsynchronously
(
this,
(
)
->
{
getLogger
(
).
log
(Level.
INFO, ChatColor.
YELLOW
+
"Waiting ItemsAdder to register custom items..."
)
;
while
(
!ItemsAdder.
areItemsLoaded
(
)
)
{
}
load
(
)
;
}
)
;