This commit is contained in:
Pedro Ivo Hudson 2024-02-14 21:53:51 -03:00
parent fdd1719128
commit 5aa3fec546
1 changed files with 5 additions and 0 deletions

View File

@ -6,4 +6,9 @@ export default class quake1 extends quake2 {
this.responseHeader = 'n'
this.isQuake1 = true
}
async run(state) {
await super.run(state)
if ('*version' in state.raw) state.version = state.raw['*version']
}
}