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);
}
}