mirror of
https://github.com/TotalFreedomMC/TF-LibsDisguises.git
synced 2025-02-11 03:30:02 +00:00
A bit distracted! Fix an if check
This commit is contained in:
parent
9edf69af54
commit
40ef2159c8
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ public class LibsDisguises extends JavaPlugin {
|
|||
String version = getDescription().getVersion();
|
||||
|
||||
// If a release build, attach build number
|
||||
if (!isReleaseBuild() && LibsPremium.isPremium()) {
|
||||
if (!isReleaseBuild() || !LibsPremium.isPremium()) {
|
||||
version += "-";
|
||||
|
||||
// 9.7.0-SNAPSHOT-b30
|
||||
|
|
Loading…
Reference in a new issue