mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2026-02-04 17:41:23 +01:00
Update src/modules/burgs-generator.ts
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
parent
b816880347
commit
b4dbb2d677
1 changed files with 3 additions and 3 deletions
|
|
@ -639,9 +639,9 @@ class BurgModule {
|
||||||
string,
|
string,
|
||||||
(burg: Burg) => { link: string | null; preview: string | null }
|
(burg: Burg) => { link: string | null; preview: string | null }
|
||||||
> = {
|
> = {
|
||||||
"watabou-city": this.createWatabouCityLinks,
|
"watabou-city": (burg: Burg) => this.createWatabouCityLinks(burg),
|
||||||
"watabou-village": this.createWatabouVillageLinks,
|
"watabou-village": (burg: Burg) => this.createWatabouVillageLinks(burg),
|
||||||
"watabou-dwelling": this.createWatabouDwellingLinks,
|
"watabou-dwelling": (burg: Burg) => this.createWatabouDwellingLinks(burg),
|
||||||
};
|
};
|
||||||
if (burg.link) return { link: burg.link, preview: burg.link };
|
if (burg.link) return { link: burg.link, preview: burg.link };
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue