1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-09-25 21:59:08 +02:00

New config option disable-item-pickup-while-afk, defaults to true.

This commit is contained in:
snowleo
2011-12-07 12:10:41 +01:00
parent 324cd74826
commit d60de76d87
5 changed files with 33 additions and 6 deletions

View File

@@ -572,4 +572,10 @@ public class Settings implements ISettings
{
return config.getBoolean("register-back-in-listener", false);
}
@Override
public boolean getDisableItemPickupWhileAfk()
{
return config.getBoolean("disable-item-pickup-while-afk", true);
}
}