fixed backpack errors
All checks were successful
Gitea Actions Demo / Build-Gradle (push) Successful in 2m55s

This commit is contained in:
Your Name
2025-07-27 18:09:29 +02:00
parent b86f2b28cb
commit a2cb88b5fe
7 changed files with 19 additions and 18 deletions

View File

@@ -1,16 +1,17 @@
./rebuild.sh after git clone!
Open the Command Palette: Cmd+Shift+P
• Developer: reload window
ALLGEMEIN: recipes die custom items beinhalten werden nicht im crafting angezeigt (allgm. Bukkit problem)
INFO: CustomItemIcon count: 22
BUG: Autocrafter nicht von seite möglich
BUG: Music Disc 13 now unfunctional (vertrtbar)
IDEA: schere verschiedene versionen pferde/mule/cats/schafe/Axolotl/tropical etc?
TO RELEASE: ignorevote command
TO RELEASE: waterbottle + sponge = empty bottle -> Warum nochmal?
TO RELEASE: Autocrafter
TO RELEASE: jukeboxes können mit Redstone gesteuert werden + crafted music
TO RELEASE: Squids won't spawn + GLOWSTONE DUST für Rahmen
./rebuild.sh after git clone!
Open the Command Palette: Cmd+Shift+P
• Developer: reload window
ALLGEMEIN: recipes die custom items beinhalten werden nicht im crafting angezeigt (allgm. Bukkit problem)
INFO: CustomItemIcon count: 22
BUG: Autocrafter nicht von seite möglich
BUG: Music Disc 13 now unfunctional (vertrtbar)
IDEA: schere verschiedene versionen pferde/mule/cats/schafe/Axolotl/tropical etc?
TO RELEASE: ignorevote command
TO RELEASE: waterbottle + sponge = empty bottle -> Warum nochmal?
TO RELEASE: Autocrafter
TO RELEASE: jukeboxes können mit Redstone gesteuert werden + crafted music
TO RELEASE: Squids won't spawn + GLOWSTONE DUST für Rahmen
TO RELEASE: MUTE FUNCTION FOR TAGGED MOBS

View File

@@ -1,2 +1,2 @@
Command: /opt/homebrew/Cellar/openjdk/23.0.2/libexec/openjdk.jdk/Contents/Home/bin/java -Xmx1G -classpath /Users/janik/.gradle/caches/modules-2/files-2.1/net.fabricmc/tiny-remapper/0.10.4/d78e8e115ba5ac99421ce2d5e84e88b91a5f08b7/tiny-remapper-0.10.4-fat.jar net.fabricmc.tinyremapper.Main /Users/janik/Desktop/MCPlugins/helper-1.0-SNAPSHOT.jar /Users/janik/Desktop/MCPlugins/helper/build/libs/helper-1.0-SNAPSHOT-reobf.jar /Users/janik/Desktop/MCPlugins/helper/.gradle/caches/paperweight/taskCache/reobfMappings.tiny mojang spigot /Users/janik/Desktop/MCPlugins/helper/.gradle/caches/paperweight/taskCache/mappedServerJar.jar --threads=1
Finished after 1114,03 ms.
Finished after 2372,94 ms.

View File

@@ -187,7 +187,7 @@ public class Helper {
public static ItemStack[] itemStackArrayFromBase64(String data) throws IOException {
try {
if (data == "null") {
if (data == null || data.isEmpty()) {
data = "AQAAAAA=";
}
ItemStack[] is = ItemStack.deserializeItemsFromBytes(Base64Coder.decodeLines(data));