Fixed #542
This commit is contained in:
WayofTime 2016-01-03 08:30:59 -05:00
parent 4e696bcf7b
commit 14d3a1ec7e
11 changed files with 40 additions and 16 deletions

View file

@ -67,6 +67,12 @@ public class RitualRegistry
{
try
{
//TODO: Fix the Enabled Rituals map so that the config loads properly.
if (!enabledRituals.containsKey(ritual))
{
return true;
}
return enabledRituals.get(ritual);
} catch (NullPointerException e)
{

View file

@ -33,7 +33,7 @@ public interface IMasterRitualStone
int getRunningTime();
World getWorld();
World getWorldObj();
BlockPos getPos();
BlockPos getBlockPos();
}