Adding ability to save /back location from teleport events outside essentilals

New config setting to turn this on "register-back-in-listener"
Test #1200
CB#1560 / B#1055
This commit is contained in:
ementalo 2011-12-06 22:56:38 +00:00
parent ff13279e6c
commit b9077d91a5
9 changed files with 43 additions and 4 deletions

View file

@ -566,4 +566,10 @@ public class Settings implements ISettings
{
return config.getBoolean("world-teleport-permissions", false);
}
@Override
public boolean registerBackInListener()
{
return config.getBoolean("register-back-in-listener", false);
}
}