fixed backpack errors
All checks were successful
Gitea Actions Demo / Build-Gradle (push) Successful in 2m55s
All checks were successful
Gitea Actions Demo / Build-Gradle (push) Successful in 2m55s
This commit is contained in:
33
README.md
33
README.md
@@ -1,16 +1,17 @@
|
|||||||
./rebuild.sh after git clone!
|
./rebuild.sh after git clone!
|
||||||
|
|
||||||
Open the Command Palette: Cmd+Shift+P
|
Open the Command Palette: Cmd+Shift+P
|
||||||
• Developer: reload window
|
• Developer: reload window
|
||||||
|
|
||||||
ALLGEMEIN: recipes die custom items beinhalten werden nicht im crafting angezeigt (allgm. Bukkit problem)
|
ALLGEMEIN: recipes die custom items beinhalten werden nicht im crafting angezeigt (allgm. Bukkit problem)
|
||||||
INFO: CustomItemIcon count: 22
|
INFO: CustomItemIcon count: 22
|
||||||
BUG: Autocrafter nicht von seite möglich
|
BUG: Autocrafter nicht von seite möglich
|
||||||
BUG: Music Disc 13 now unfunctional (vertrtbar)
|
BUG: Music Disc 13 now unfunctional (vertrtbar)
|
||||||
IDEA: schere verschiedene versionen pferde/mule/cats/schafe/Axolotl/tropical etc?
|
IDEA: schere verschiedene versionen pferde/mule/cats/schafe/Axolotl/tropical etc?
|
||||||
|
|
||||||
TO RELEASE: ignorevote command
|
TO RELEASE: ignorevote command
|
||||||
TO RELEASE: waterbottle + sponge = empty bottle -> Warum nochmal?
|
TO RELEASE: waterbottle + sponge = empty bottle -> Warum nochmal?
|
||||||
TO RELEASE: Autocrafter
|
TO RELEASE: Autocrafter
|
||||||
TO RELEASE: jukeboxes können mit Redstone gesteuert werden + crafted music
|
TO RELEASE: jukeboxes können mit Redstone gesteuert werden + crafted music
|
||||||
TO RELEASE: Squids won't spawn + GLOWSTONE DUST für Rahmen
|
TO RELEASE: Squids won't spawn + GLOWSTONE DUST für Rahmen
|
||||||
|
TO RELEASE: MUTE FUNCTION FOR TAGGED MOBS
|
||||||
|
|||||||
Binary file not shown.
@@ -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
|
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.
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -187,7 +187,7 @@ public class Helper {
|
|||||||
|
|
||||||
public static ItemStack[] itemStackArrayFromBase64(String data) throws IOException {
|
public static ItemStack[] itemStackArrayFromBase64(String data) throws IOException {
|
||||||
try {
|
try {
|
||||||
if (data == "null") {
|
if (data == null || data.isEmpty()) {
|
||||||
data = "AQAAAAA=";
|
data = "AQAAAAA=";
|
||||||
}
|
}
|
||||||
ItemStack[] is = ItemStack.deserializeItemsFromBytes(Base64Coder.decodeLines(data));
|
ItemStack[] is = ItemStack.deserializeItemsFromBytes(Base64Coder.decodeLines(data));
|
||||||
|
|||||||
Reference in New Issue
Block a user