fix config manager initialization in V1_20_2PacketFactory

This commit is contained in:
D3v1s0m 2024-01-29 00:06:07 +05:30
parent 0c0747cd23
commit 624a3c97a2
No known key found for this signature in database
GPG Key ID: FA1F770C7B1D40C1

@ -23,6 +23,7 @@ public class V1_20_2PacketFactory extends V1_19_3PacketFactory {
public V1_20_2PacketFactory(TaskScheduler scheduler, PacketEventsAPI<Plugin> packetEvents, EntityPropertyRegistryImpl propertyRegistry, LegacyComponentSerializer textSerializer, ConfigManager configManager) { public V1_20_2PacketFactory(TaskScheduler scheduler, PacketEventsAPI<Plugin> packetEvents, EntityPropertyRegistryImpl propertyRegistry, LegacyComponentSerializer textSerializer, ConfigManager configManager) {
super(scheduler, packetEvents, propertyRegistry, textSerializer, configManager); super(scheduler, packetEvents, propertyRegistry, textSerializer, configManager);
this.configManager = configManager;
} }
@Override @Override