mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-27 23:47:38 +01:00
Update sign processor
This commit is contained in:
parent
44a2181bb1
commit
90da3378bb
1 changed files with 11 additions and 3 deletions
|
@ -2,6 +2,7 @@ package com.simibubi.create.foundation.utility;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.function.UnaryOperator;
|
import java.util.function.UnaryOperator;
|
||||||
|
|
||||||
|
@ -11,6 +12,7 @@ import com.simibubi.create.AllBlockEntityTypes;
|
||||||
|
|
||||||
import net.minecraft.nbt.CompoundTag;
|
import net.minecraft.nbt.CompoundTag;
|
||||||
import net.minecraft.nbt.ListTag;
|
import net.minecraft.nbt.ListTag;
|
||||||
|
import net.minecraft.nbt.StringTag;
|
||||||
import net.minecraft.nbt.Tag;
|
import net.minecraft.nbt.Tag;
|
||||||
import net.minecraft.network.chat.Component;
|
import net.minecraft.network.chat.Component;
|
||||||
import net.minecraft.tags.BlockTags;
|
import net.minecraft.tags.BlockTags;
|
||||||
|
@ -61,9 +63,15 @@ public final class NBTProcessors {
|
||||||
|
|
||||||
// Triggered by block tag, not BE type
|
// Triggered by block tag, not BE type
|
||||||
private static final UnaryOperator<CompoundTag> signProcessor = data -> {
|
private static final UnaryOperator<CompoundTag> signProcessor = data -> {
|
||||||
for (int i = 0; i < 4; ++i)
|
for (String key : List.of("front_text", "back_text")) {
|
||||||
if (textComponentHasClickEvent(data.getString("Text" + (i + 1))))
|
CompoundTag textTag = data.getCompound(key);
|
||||||
|
if (!textTag.contains("messages", Tag.TAG_LIST))
|
||||||
|
continue;
|
||||||
|
for (Tag tag : textTag.getList("messages", Tag.TAG_STRING))
|
||||||
|
if (tag instanceof StringTag stringTag)
|
||||||
|
if (textComponentHasClickEvent(stringTag.getAsString()))
|
||||||
return null;
|
return null;
|
||||||
|
}
|
||||||
return data;
|
return data;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue