mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-01 02:46:41 +00:00
Minor versioning changes
This commit is contained in:
committed by
NotMyFault
parent
55b02e1b1f
commit
8d68da09a3
@ -30,9 +30,12 @@ public class FaweVersion {
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "FastAsyncWorldEdit-" + year + "." + month + "." + day + "-" + Integer.toHexString(hash) + "-" + build;
|
||||
@Override public String toString() {
|
||||
if (hash == 0 && build == 0) {
|
||||
return "FastAsyncWorldEdit-1.13-NoVer-SNAPSHOT";
|
||||
} else {
|
||||
return "FastAsyncWorldEdit-1.13" + build;
|
||||
}
|
||||
}
|
||||
|
||||
public boolean isNewer(FaweVersion other) {
|
||||
|
Reference in New Issue
Block a user