Skip to content

Commit

Permalink
Refact code
Browse files Browse the repository at this point in the history
Signed-off-by: Jaida Wu <mlgmxyysd@meowcat.org>
  • Loading branch information
MlgmXyysd committed Apr 21, 2022
1 parent 65e0799 commit a156789
Show file tree
Hide file tree
Showing 5 changed files with 132 additions and 153 deletions.
12 changes: 6 additions & 6 deletions src/main/java/emu/grasscutter/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ public final class Config {
public String GameServerIp = "127.0.0.1";
public String GameServerPublicIp = "";
public int GameServerPort = 22102;

public String DatabaseUrl = "mongodb://localhost:27017";
public String DatabaseCollection = "grasscutter";

public String RESOURCE_FOLDER = "./resources/";
public String DATA_FOLDER = "./data/";
public String PACKETS_FOLDER = "./packets/";
Expand All @@ -25,21 +25,21 @@ public final class Config {

public GameRates Game = new GameRates();
public ServerOptions ServerOptions = new ServerOptions();

public GameRates getGameRates() {
return Game;
}

public ServerOptions getServerOptions() {
return ServerOptions;
}

public static class GameRates {
public float ADVENTURE_EXP_RATE = 1.0f;
public float MORA_RATE = 1.0f;
public float DOMAIN_DROP_RATE = 1.0f;
}

public static class ServerOptions {
public int InventoryLimitWeapon = 2000;
public int InventoryLimitRelic = 2000;
Expand Down
Loading

0 comments on commit a156789

Please sign in to comment.