From 5541e36f81d5d565f7a205ad1f7db2b2463ff553 Mon Sep 17 00:00:00 2001 From: Osmium Sorcerer Date: Sun, 22 Mar 2026 17:50:53 +0000 Subject: Remove IL packet IL packet is a relic from pre-IPID days when moderators used it to get the "IP list" of connected users. Its function is to display a list of strings in the OOC chat box. That's it. Not even some obscure feature that can be revived. Everything IL can do, CT can do (the "OOC message" packet). --- src/packet_distribution.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/packet_distribution.cpp') diff --git a/src/packet_distribution.cpp b/src/packet_distribution.cpp index 5c9cd17..2ff35ce 100644 --- a/src/packet_distribution.cpp +++ b/src/packet_distribution.cpp @@ -474,14 +474,6 @@ void AOApplication::server_packet_received(AOPacket packet) } log_to_demo = false; } - else if (header == "IL") - { - if (is_courtroom_constructed() && !content.isEmpty()) - { - w_courtroom->set_ip_list(content.at(0)); - } - log_to_demo = false; - } else if (header == "MU") { if (is_courtroom_constructed() && !content.isEmpty()) -- cgit