diff options
Diffstat (limited to 'npc/annuals/xmas/2021.txt')
-rw-r--r-- | npc/annuals/xmas/2021.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/annuals/xmas/2021.txt b/npc/annuals/xmas/2021.txt index 192ce8a0..eed17da9 100644 --- a/npc/annuals/xmas/2021.txt +++ b/npc/annuals/xmas/2021.txt @@ -41,10 +41,12 @@ function script X21INIT { .@mapa$ = "0812@"+X21ID2(); // Northern Lights .@mapb$ = "0813@"+X21ID2(); // Existential Frontier .@mapc$ = "0803@"+X21ID2(); // Forgotten/Mystic/Peaceful Glade + .@mapd$ = "0801@"+X21ID2(); // Peaceful Glade (Present) instance_attachmap("081-2", .@inst, false, .@mapa$); - instance_attachmap("081-3", .@inst, false, "0813@"+X21ID2()); - instance_attachmap("080-3", .@inst, false, "0803@"+X21ID2()); + instance_attachmap("081-3", .@inst, false, .@mapb$); + instance_attachmap("080-3", .@inst, false, .@mapc$); + instance_attachmap("080-1", .@inst, false, .@mapd$); instance_set_timeout(1800, 1800, .@inst); instance_init(.@inst); |