-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Add additional tags to ItemMeta obfuscation filtering #9665
Conversation
Filtering custom model data is a no go |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing CustomModelData will change the look of the item for other players. That should not be removed like that.
That's why I deliberately put it inside the |
visual effects are generally more trivial things, idk how a lode compass appears differently to others if it has a pos or not, but, CMD is purely intended to allow people to change how items look in general using datapacks, etc; it being removed ever sounds like a stupidly niche edge-case at best |
de15d58
to
707fcc7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
idk how a lode compass appears differently to others if it has a pos or not
@@ -107,6 +111,8 @@ index a5cf00a41c61cc9f851781cc4f55c9bb47c2f5b6..f306c9e8f46d80d4c4fdc671e3754b3f | |||
+ // the position and fake the dimension | |||
+ tag.putString("LodestoneDimension", "paper:paper"); | |||
+ } | |||
+ // The id of a filled map | |||
+ tag.remove("map"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What changes visually when this tag is missing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Vanilla does not have any visual changes, but some mods which aren't necessarily cheats could behave differently.
707fcc7
to
b186b4e
Compare
b186b4e
to
d212bba
Compare
Fixes #9451
(Is blacklist filtering even feasible like Machine said in the linked issue or would it be too much work to cover all edge cases?)