diff --git a/network/src/test/kotlin/world/gregs/voidps/network/login/protocol/DecoderTest.kt b/network/src/test/kotlin/world/gregs/voidps/network/login/protocol/DecoderTest.kt index 9978de74a..0177fc8d4 100644 --- a/network/src/test/kotlin/world/gregs/voidps/network/login/protocol/DecoderTest.kt +++ b/network/src/test/kotlin/world/gregs/voidps/network/login/protocol/DecoderTest.kt @@ -107,11 +107,11 @@ class DecoderTest { null, // 84 null, // 71 Walk(1234, 4321), // 35 - Walk(1234, 4321), // 82 + Walk(1234, 4321, minimap = true), // 82 null, // 49 null, // 8 null, // 52 - null, // 58 + WorldMapClick(tile = 12345), // 58 ).mapIndexed { index, expected -> val (id, data) = packets[index] dynamicTest("Test ${if (expected != null) expected::class.simpleName else "Packet $id"} decoder") {