Skip to content

Commit

Permalink
feat(MetaData): re-introduce seed property
Browse files Browse the repository at this point in the history
  • Loading branch information
meszaros-lajos-gyorgy committed Aug 10, 2023
1 parent ff5328d commit bfe5644
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/MetaData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ export class MetaData {
generatorVersion: string = ''
credits: string =
'This map was made using tools created by Lajos Mészáros and Frederik Gelder - Visit https://arx-tools.github.io/ to find out more.'
seed: string = ''

toData() {
return {
mapName: this.mapName,
generator: this.generator,
generatorVersion: this.generatorVersion,
credits: this.credits,
seed: this.seed,
}
}
}

0 comments on commit bfe5644

Please sign in to comment.