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
|
@ -125,6 +125,6 @@ public class WeaponDataManager {
|
|||
}
|
||||
|
||||
public String getBasedOnSplatoonVersion() {
|
||||
return basedOnSplatoonVersion;
|
||||
return basedOnSplatoonVersion == null ? BuildConstants.splatoonPatchVersion : basedOnSplatoonVersion;
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue