-
-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please, allow configure additional signs #562
Comments
With which datapack/mod do you have issues with? Because the current code should already work with any block which behaves like a proper sign. |
I use BYG. To add some context (I'm Java developer, but do not know well internals of Minecraft): So, something in the config file like:
(Make sure you do not access custom items using "minecraft" namespace - some plugins fail to work with custom items exactly because of that.) |
So if I read this right then there is no issue in you case? That's good to hear that the code indeed works as I expected. As I said: Any custom block that behaves like a sign is supported. (As long as the mod and the server implementation implements the Bukkit API properly) The type of the sign block is not checked anywhere in the plugin. The only reason why there is a config for containers is because the plugin is meant for chests in the first place and people might not want to allow specific container types/sizes, especially as they might have special behaviour different from a chest (e.g. a Dropper). That's not something that is part of signs in Minecraft so I personally don'f t see a need for this. I'm of course open for a proper PR if you really want to add/get someone to add it. |
No, it does not work in my case, you can see it in the last image. ChestShop simply does not recognize it as a sign. Maybe I can fix it somehow with a data pack or additional tags? Any known examples of making a "correct" custom sign item that works with ChestShop? |
@vgrynch Ah, I see. The text was pretty hard to read on there. Contact support of your server software then. They are not properly implementing the Bukkit/Spigot API, there is nothing I can do about your issue as there is no "list of allowed sign blocks" in ChestShop which would be blocking this. |
You mean this event, right? ChestShop-3/src/main/java/com/Acrobot/ChestShop/Listeners/Block/SignCreate.java Lines 16 to 26 in 9bbd602
I will contact them and check what they say. Please, do not close this ticket for now. |
That's the main listener for shop creation, yes. |
Is your feature request related to a problem? Please describe.
Would be good if, in addition to the list of supported containers, we could specify the list of signs allowed to use. Custom data packs and hybrid server (modded) content may add new signs.
Describe the solution you'd like
ChestShop works great with the custom modded or custom data pack chests added (with a custom namespace) when added to the list of supported containers. I hope, since there is already some support for custom namespace chests, it would not be hard to allow specifying additional signs for use.
Describe alternatives you've considered
No response
Agreements
Additional context
No response
The text was updated successfully, but these errors were encountered: