Improve English

Commits like this one are seriously embarrassing
This commit is contained in:
Minecon724 2024-09-22 13:26:51 +02:00
parent 35f8c5f882
commit 88df6c5781
Signed by: Minecon724
GPG key ID: 3CCC4D267742C8E8

View file

@ -53,8 +53,8 @@ public class RealWeatherPlugin extends JavaPlugin {
DebugLogger.info("loading configurations", 1);
if (!new File(dataFolder, "config.yml").exists()) {
logger.info("This is the first run of this plugin.");
logger.info("Please shutdown the server and input your API keys and settings");
logger.warning("This is the first time running this plugin.");
logger.warning("Please shut down the server, review the config files, and enter your API keys.");
getServer().getPluginManager().disablePlugin(this);
return;
@ -78,7 +78,7 @@ public class RealWeatherPlugin extends JavaPlugin {
DebugLogger.debugLevel = configuration.getInt("debug");
if (!configuration.getBoolean("enabled")) {
logger.info("plugin disabled by admin");
logger.info("Plugin disabled by configuration!");
getServer().getPluginManager().disablePlugin(this);
return;
}