diff --git a/NCPPlugin/src/main/java/fr/neatmonster/nocheatplus/compat/DefaultComponentFactory.java b/NCPPlugin/src/main/java/fr/neatmonster/nocheatplus/compat/DefaultComponentFactory.java index 24ec92fb..1c3bb575 100644 --- a/NCPPlugin/src/main/java/fr/neatmonster/nocheatplus/compat/DefaultComponentFactory.java +++ b/NCPPlugin/src/main/java/fr/neatmonster/nocheatplus/compat/DefaultComponentFactory.java @@ -75,6 +75,9 @@ public class DefaultComponentFactory { if (pV == null) { pV = GenericVersion.parseVersionDelimiters(_pV, "", "-snapshot"); } + if (pV == null) { + pV = GenericVersion.parseVersionDelimiters(_pV, "", "-b"); + } if (pV == null) { // TODO: Was another (specific) attempt parsing planned here !? StaticLog.logWarning("Could not interpret the version of ProtocolLib, won't activate hooks.");