DNET: Remove packet capture (#2594)

* DNET: Remove packet capture as an API tool; add the mechanic as part of the logs in the Open Web Access Point puzzle

* DNET: Make harder version of the packet capture puzzle just have alphanumeric noise instead of lore data and stuff

* DNET: Make harder version of the packet capture puzzle just have alphanumeric noise instead of lore data and stuff

* PR feedback
This commit is contained in:
Michael Ficocelli
2026-03-26 18:27:30 -07:00
committed by GitHub
parent 92a8e619b8
commit 5c02f81dc7
12 changed files with 13 additions and 209 deletions
+1 -1
View File
@@ -411,7 +411,7 @@ export const getKingOfTheHillConfig = (difficulty: number): ServerConfig => {
export const getPacketSnifferConfig = (difficulty: number): ServerConfig => {
return {
modelId: ModelIds.packetSniffer,
password: getPassword(3 + difficulty / 3, difficulty > 8),
password: getPassword(3 + Math.random() * 6, difficulty > 8),
staticPasswordHint: "(I'm busy browsing social media at the cafe)",
};
};