File tree Expand file tree Collapse file tree 1 file changed +0
-23
lines changed
common/src/main/java/com/viaversion/viarewind/protocol/protocol1_8to1_9/packets Expand file tree Collapse file tree 1 file changed +0
-23
lines changed Original file line number Diff line number Diff line change @@ -141,29 +141,6 @@ public void register() {
141141 }
142142 });
143143
144- //Explosion
145- protocol .registerClientbound (ClientboundPackets1_9 .EXPLOSION , new PacketHandlers () {
146- @ Override
147- public void register () {
148- map (Type .FLOAT );
149- map (Type .FLOAT );
150- map (Type .FLOAT );
151- map (Type .FLOAT );
152- handler (packetWrapper -> {
153- int count = packetWrapper .read (Type .INT );
154- packetWrapper .write (Type .INT , count );
155- for (int i = 0 ; i < count ; i ++) {
156- packetWrapper .passthrough (Type .UNSIGNED_BYTE );
157- packetWrapper .passthrough (Type .UNSIGNED_BYTE );
158- packetWrapper .passthrough (Type .UNSIGNED_BYTE );
159- }
160- });
161- map (Type .FLOAT );
162- map (Type .FLOAT );
163- map (Type .FLOAT );
164- }
165- });
166-
167144 //Unload Chunk
168145 protocol .registerClientbound (ClientboundPackets1_9 .UNLOAD_CHUNK , ClientboundPackets1_8 .CHUNK_DATA , new PacketHandlers () {
169146 @ Override
You can’t perform that action at this time.
0 commit comments