mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
/mcconvert: Fix mismatched type in list.remove() call
The databaseTypes collection is a List<String>, so attempting to remove a DatabaseType object will have no effect.
This commit is contained in:
parent
e8b886fcc6
commit
0cd0919447
@ -45,7 +45,7 @@ public class McconvertCommand implements TabExecutor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Custom stuff
|
// Custom stuff
|
||||||
databaseTypes.remove(DatabaseType.CUSTOM);
|
databaseTypes.remove(DatabaseType.CUSTOM.toString());
|
||||||
|
|
||||||
if (mcMMO.getDatabaseManager().getDatabaseType() == DatabaseType.CUSTOM) {
|
if (mcMMO.getDatabaseManager().getDatabaseType() == DatabaseType.CUSTOM) {
|
||||||
databaseTypes.add(DatabaseManagerFactory.getCustomDatabaseManagerClass().getName());
|
databaseTypes.add(DatabaseManagerFactory.getCustomDatabaseManagerClass().getName());
|
||||||
|
Loading…
Reference in New Issue
Block a user