1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-09-26 06:09:15 +02:00

Allow to disable the death messages of minecraft

This commit is contained in:
snowleo
2011-10-09 20:59:06 +02:00
parent ac794bb2b7
commit 3496df6468
4 changed files with 22 additions and 5 deletions

View File

@@ -523,4 +523,10 @@ public class Settings implements ISettings
{
return config.getBoolean("freeze-afk-players", false);
}
@Override
public boolean areDeathMessagesEnabled()
{
return config.getBoolean("death-messages", true);
}
}