fix crash with too many cobblemon in pc
This commit is contained in:
parent
38c88a95f9
commit
d4a2568f16
|
|
@ -140,11 +140,15 @@ public class PlayerSync {
|
||||||
"uuid CHAR(36) NOT NULL," +
|
"uuid CHAR(36) NOT NULL," +
|
||||||
"inv BLOB," +
|
"inv BLOB," +
|
||||||
"pokedex BLOB," +
|
"pokedex BLOB," +
|
||||||
"pc BLOB," +
|
"pc MEDIUMBLOB," +
|
||||||
"general BLOB," +
|
"general BLOB," +
|
||||||
"PRIMARY KEY (uuid)" +
|
"PRIMARY KEY (uuid)" +
|
||||||
")"
|
")"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
JDBCsetUp.executeUpdate(
|
||||||
|
"ALTER TABLE " + dbName + ".cobblemon MODIFY COLUMN pc MEDIUMBLOB"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create backpack_data table
|
// Create backpack_data table
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user