mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-23 01:27:40 +01:00
Fix BukkitVersion's toString and equals
This commit is contained in:
parent
67bccb865a
commit
769dbe8852
@ -102,7 +102,7 @@ public class VersionUtil {
|
||||
return major == that.major &&
|
||||
minor == that.minor &&
|
||||
patch == that.patch &&
|
||||
revision == that.patch;
|
||||
revision == that.revision;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -112,7 +112,7 @@ public class VersionUtil {
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return major + "+" + minor + "+" + patch + "-R" + revision;
|
||||
return major + "." + minor + "." + patch + "-R" + revision;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user