Skip to content

Commit 6305397

Browse files
committed
1.21.7
1 parent a20c4d0 commit 6305397

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

proxy/src/main/java/ru/leymooo/botfilter/caching/CachedCaptcha.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public void write(Channel channel, int version, boolean flush)
121121
} else if ( version <= ProtocolConstants.MINECRAFT_1_21_4 )
122122
{
123123
channel.write( buf1212.retainedDuplicate(), channel.voidPromise() );
124-
} else if ( version <= ProtocolConstants.MINECRAFT_1_21_6 )
124+
} else if ( version <= ProtocolConstants.MINECRAFT_1_21_7 )
125125
{
126126
channel.write( buf1205and1215.retainedDuplicate(), channel.voidPromise() );
127127
} else

proxy/src/main/java/ru/leymooo/botfilter/caching/PacketUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public static void init()
162162
ProtocolConstants.MINECRAFT_1_20_3, ProtocolConstants.MINECRAFT_1_20_5,
163163
ProtocolConstants.MINECRAFT_1_21, ProtocolConstants.MINECRAFT_1_21_2,
164164
ProtocolConstants.MINECRAFT_1_21_4, ProtocolConstants.MINECRAFT_1_21_5,
165-
ProtocolConstants.MINECRAFT_1_21_6 ) )
165+
ProtocolConstants.MINECRAFT_1_21_6, ProtocolConstants.MINECRAFT_1_21_7 ) )
166166
{
167167
configurationRegistry.put( version, new CachedRegistryData( dimension, version ) );
168168
}

0 commit comments

Comments
 (0)