VersionString: Always show the patch version

This commit is contained in:
Dylan K. Taylor 2018-03-21 13:07:40 +00:00
parent c835c97aba
commit b0780c4d1d

View File

@ -80,7 +80,7 @@ class VersionString{
}
public function getRelease() : string{
return $this->generation . "." . $this->major . ($this->minor > 0 ? "." . $this->minor : "");
return $this->generation . "." . $this->major . "." . $this->minor;
}
public function getBuild() : int{