Fix impl version string

This commit is contained in:
FlorianMichael 2024-07-22 12:33:51 +02:00
parent 3e2533f7c2
commit 5eb1f5730c
No known key found for this signature in database
GPG Key ID: C2FB87E71C425126
2 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ public ProtocolVersion getClientProtocol(UserConnection connection) {
if (version.getVersionType() == VersionType.SPECIAL) {
return ProtocolVersion.getProtocol(VersionType.SPECIAL, version.getOriginalVersion());
} else {
return delegate.getClientProtocol(connection);
return super.getClientProtocol(connection);
}
}
```

View File

@ -14,7 +14,7 @@ sourceSets {
main {
classTokenReplacer {
property("\${version}", project.version)
property("\${impl_version}", "git-${rootProject.name}-${project.version}:${rootProject.latestCommitHash()}")
property("\${impl_version}", "git-ViaAprilFools-${project.version}:${rootProject.latestCommitHash()}")
}
}
}