[trunk] new setting use-1to1-ratio if true sets the nether offset when using world to 1:1 else defaults to normal nether ratio

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1201 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
ementalo 2011-04-15 23:06:29 +00:00
parent 60bf78040c
commit c1ef4faaf9
3 changed files with 14 additions and 1 deletions

View file

@ -458,4 +458,9 @@ public class Settings implements IConf
{
return config.getBoolean("protect.disable.warn-on-build-disallow", false);
}
public boolean use1to1RatioInNether()
{
return config.getBoolean("nether.use-1to1-ratio", false);
}
}