aboutsummaryrefslogtreecommitdiff
path: root/webAO/dom/areaClick.ts
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/dom/areaClick.ts')
-rw-r--r--webAO/dom/areaClick.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/webAO/dom/areaClick.ts b/webAO/dom/areaClick.ts
index 19953a5..f7b177e 100644
--- a/webAO/dom/areaClick.ts
+++ b/webAO/dom/areaClick.ts
@@ -1,6 +1,4 @@
import { client } from "../client";
-import { updatePlayerAreas } from "./updatePlayerAreas";
-import { ensureCharIni } from "../client/handleCharacterInfo";
/**
* Triggered when an item on the area list is clicked.
* @param {HTMLElement} el
@@ -14,13 +12,5 @@ export function area_click(el: HTMLElement) {
areaHr.textContent = `switched to ${el.textContent}`;
document.getElementById("client_log")!.appendChild(areaHr);
client.area = Number(el.id.substring(4));
- updatePlayerAreas(client.area);
-
- // Prefetch char.ini for all characters present in the new area
- for (const player of client.players.values()) {
- if (player.area === client.area && player.charId >= 0) {
- ensureCharIni(player.charId);
- }
- }
}
window.area_click = area_click;