mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-24 11:45:31 +01:00
Updated databaseType config comment
This commit is contained in:
parent
e8ba1805a5
commit
7b2478cf33
@ -50,11 +50,12 @@ public class Settings implements DataObject {
|
||||
private double startingMoney = 10.0;
|
||||
|
||||
// Database
|
||||
@ConfigComment("FLATFILE, MYSQL, MONGO")
|
||||
@ConfigComment("if you use MONGO, you must also run the BSBMongo plugin (not addon)")
|
||||
@ConfigComment("See https://github.com/tastybento/bsbMongo/releases/")
|
||||
@ConfigComment("YAML, JSON, MYSQL, MONGODB.")
|
||||
@ConfigComment("YAML and JSON are both file-based databases.")
|
||||
@ConfigComment("if you use MONGODB, you must also run the BSBMongo plugin (not addon).")
|
||||
@ConfigComment("See https://github.com/tastybento/bsbMongo/releases/.")
|
||||
@ConfigEntry(path = "general.database.type")
|
||||
private DatabaseType databaseType = DatabaseType.FLATFILE;
|
||||
private DatabaseType databaseType = DatabaseType.YAML;
|
||||
|
||||
@ConfigEntry(path = "general.database.host")
|
||||
private String databaseHost = "localhost";
|
||||
|
Loading…
Reference in New Issue
Block a user