fix: SplatoonPatchVersion was null, when no Data was found, fixed version numbers
This commit is contained in:
parent
b50cc56188
commit
116df6e630
2 changed files with 3 additions and 3 deletions
|
@ -5,8 +5,8 @@ plugins {
|
|||
}
|
||||
|
||||
group = "de.limited_dev"
|
||||
version = "v1.3.0"
|
||||
var splatoonPatchBased = "1.4.1"
|
||||
version = "v1.4.0"
|
||||
var splatoonPatchBased = "1.2.1"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
|
|
@ -125,6 +125,6 @@ public class WeaponDataManager {
|
|||
}
|
||||
|
||||
public String getBasedOnSplatoonVersion() {
|
||||
return basedOnSplatoonVersion;
|
||||
return basedOnSplatoonVersion == null ? BuildConstants.splatoonPatchVersion : basedOnSplatoonVersion;
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue