We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
version_openttd still follows the old 1.x.y versioning schema of OpenTTD.
version_openttd
People started working around this by testing for 1.12, 1.13, 1.14 instead for 12.0, 13.0 and 14.0: https://newgrf-specs.tt-wiki.net/index.php?title=NML:General&curid=340&diff=4465&oldid=4261
But this will only work till 15.0. For 16.0 one would need version_openttd(0, 16+16, 0), which is even more weird.
version_openttd(0, 16+16, 0)
The text was updated successfully, but these errors were encountered:
Fix OpenTTD#295: Adjust version_openttd for OpenTTD >= 12.0.
1026dff
How does OpenTTD report its version now in variable 21/A1? According to the specs, it has only one nibble reserved: https://newgrf-specs.tt-wiki.net/wiki/GlobalVariables#OpenTTD_Version_.2821_.2F_A1.29
Sorry, something went wrong.
Ah, not even the NFO docs were updated :) Anyway, meanwhile I made a PR #296
518b83e
No branches or pull requests
version_openttd
still follows the old 1.x.y versioning schema of OpenTTD.People started working around this by testing for 1.12, 1.13, 1.14 instead for 12.0, 13.0 and 14.0: https://newgrf-specs.tt-wiki.net/index.php?title=NML:General&curid=340&diff=4465&oldid=4261
But this will only work till 15.0.
For 16.0 one would need
version_openttd(0, 16+16, 0)
, which is even more weird.The text was updated successfully, but these errors were encountered: