Fixed IPAnonPatch failing after 4.6.0 patches

This commit is contained in:
Rsl1122 2018-12-31 17:17:07 +02:00
parent 7b368a907f
commit 470c5e45e6

View File

@ -187,8 +187,6 @@ public abstract class SQLDB extends Database {
new KillsServerIDPatch(this),
new WorldTimesSeverIDPatch(this),
new WorldsServerIDPatch(this),
new IPHashPatch(this),
new IPAnonPatch(this),
new NicknameLastSeenPatch(this),
new VersionTableRemovalPatch(this),
new DiskUsagePatch(this),
@ -200,7 +198,9 @@ public abstract class SQLDB extends Database {
new NicknamesOptimizationPatch(this),
new UserInfoOptimizationPatch(this),
new GeoInfoOptimizationPatch(this),
new TransferTableRemovalPatch(this)
new TransferTableRemovalPatch(this),
new IPHashPatch(this),
new IPAnonPatch(this)
};
}