mirror of
https://github.com/ViaVersion/ViaAprilFools.git
synced 2025-01-22 21:21:26 +01:00
Ignore conversion suppressing when debug mode is enabled
This commit is contained in:
parent
544fe9bb7d
commit
a3fa487012
@ -141,7 +141,7 @@ public class EntityPackets20w14infinite {
|
||||
if (attributeIdentifier == null) {
|
||||
attributeIdentifier = "minecraft:" + key;
|
||||
if (!Key.isValid(attributeIdentifier)) {
|
||||
if (!Via.getConfig().isSuppressConversionWarnings()) {
|
||||
if (!Via.getConfig().isSuppressConversionWarnings() || Via.getManager().isDebug()) {
|
||||
ViaAprilFools.getPlatform().getLogger().warning("Invalid attribute: " + key);
|
||||
}
|
||||
actualSize--;
|
||||
|
Loading…
Reference in New Issue
Block a user