aboutsummaryrefslogtreecommitdiff
path: root/webAO/packets/packets.ts
diff options
context:
space:
mode:
authorOsmium Sorcerer <os@sof.beauty>2026-03-16 15:48:24 +0000
committerOsmium Sorcerer <os@sof.beauty>2026-04-18 16:52:22 +0000
commitd50050b262d142eed8b61f58738884687f52440e (patch)
treedec33e640c667856a31e864c3e6ed8fb8efde367 /webAO/packets/packets.ts
parentda664ddaa2181cb9ef56f19fdc134eda659572d0 (diff)
Delete obsolete and unused packets
The following packets are unused and have no reason to have handlers: - CI: character information, unused and handled by SC. - EI: evidence information, unused and handled by LE. - EM: area and music information, handled by SM, and obsoleted by dedicated FA and FM. - MM: clientside toggle of whether a client is allowed to change music. The handler doesn't even do anything beyond acknowledging its existence. - RMC: plays a music track with an offset. Unused in practice, not present in AO2 Client. - ackMS: sent by the server to acknowledge an IC message, a relic from AO1.
Diffstat (limited to 'webAO/packets/packets.ts')
-rw-r--r--webAO/packets/packets.ts12
1 files changed, 0 insertions, 12 deletions
diff --git a/webAO/packets/packets.ts b/webAO/packets/packets.ts
index f6e9549..1dab924 100644
--- a/webAO/packets/packets.ts
+++ b/webAO/packets/packets.ts
@@ -1,17 +1,12 @@
import { handleMS } from "./handlers/handleMS";
import { handleCT } from "./handlers/handleCT";
import { handleMC } from "./handlers/handleMC";
-import { handleRMC } from "./handlers/handleRMC";
import { handleFL } from "./handlers/handleFL";
import { handleLE } from "./handlers/handleLE";
-import { handleEM } from "./handlers/handleEM";
-import { handleEI } from "./handlers/handleEI";
import { handleSC } from "./handlers/handleSC";
-import { handleCI } from "./handlers/handleCI";
import { handleFM } from "./handlers/handleFM";
import { handleFA } from "./handlers/handleFA";
import { handleSM } from "./handlers/handleSM";
-import { handleMM } from "./handlers/handleMM";
import { handleBD } from "./handlers/handleBD";
import { handleBB } from "./handlers/handleBB";
import { handleKB } from "./handlers/handleKB";
@@ -36,7 +31,6 @@ import { handleRD } from "./handlers/handleRD";
import { handleCharsCheck } from "./handlers/handleCharsCheck";
import { handlePV } from "./handlers/handlePV";
import { handleASS } from "./handlers/handleASS";
-import { handleackMS } from "./handlers/handleackMS";
import { handleSP } from "./handlers/handleSP";
import { handleJD } from "./handlers/handleJD";
import { handlePU } from "./handlers/handlePU";
@@ -46,17 +40,12 @@ export const packets = {
MS: handleMS,
CT: handleCT,
MC: handleMC,
- RMC: handleRMC,
- CI: handleCI,
SC: handleSC,
- EI: handleEI,
FL: handleFL,
LE: handleLE,
- EM: handleEM,
FM: handleFM,
FA: handleFA,
SM: handleSM,
- MM: handleMM,
BD: handleBD,
BB: handleBB,
KB: handleKB,
@@ -81,7 +70,6 @@ export const packets = {
CharsCheck: handleCharsCheck,
PV: handlePV,
ASS: handleASS,
- ackMS: handleackMS,
SP: handleSP,
JD: handleJD,
PU: handlePU,