fix crash with too many cobblemon in pc

This commit is contained in:
mlus 2026-02-08 22:21:37 +08:00
parent 38c88a95f9
commit d4a2568f16

View File

@ -140,11 +140,15 @@ public class PlayerSync {
"uuid CHAR(36) NOT NULL," +
"inv BLOB," +
"pokedex BLOB," +
"pc BLOB," +
"pc MEDIUMBLOB," +
"general BLOB," +
"PRIMARY KEY (uuid)" +
")"
);
JDBCsetUp.executeUpdate(
"ALTER TABLE " + dbName + ".cobblemon MODIFY COLUMN pc MEDIUMBLOB"
);
}
// Create backpack_data table