aboutsummaryrefslogtreecommitdiff
path: root/webAO/client/fixLastArea.ts
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/client/fixLastArea.ts')
-rw-r--r--webAO/client/fixLastArea.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/webAO/client/fixLastArea.ts b/webAO/client/fixLastArea.ts
index a9979da..839b14c 100644
--- a/webAO/client/fixLastArea.ts
+++ b/webAO/client/fixLastArea.ts
@@ -1,4 +1,5 @@
import { client } from "../client";
+import { renderAreaList } from "../dom/renderAreaList";
import { addTrack } from "./addTrack";
/**
@@ -7,8 +8,7 @@ import { addTrack } from "./addTrack";
export const fix_last_area = () => {
if (client.areas.length > 0) {
const malplaced = client.areas.pop().name;
- const areas = document.getElementById("areas")!;
- areas.removeChild(areas.lastChild);
+ renderAreaList();
addTrack(malplaced);
}
};