Minor Change

Minor change. Renamed all the functions in LimboDecay to begin with
lowercase letters, as is the usual style for Java development. It
slipped my mind for some reason. Uppercase starting letters is the usual
style for C# development.
This commit is contained in:
SenseiKiwi
2013-07-26 01:58:35 -04:00
parent 1b8d2aed53
commit 03b727881a
3 changed files with 18 additions and 18 deletions

View File

@@ -56,7 +56,7 @@ public class BlockLimbo extends Block
//Make sure this block is in Limbo
if (world.provider.dimensionId == limboDimensionID)
{
LimboDecay.ApplySpreadDecay(world, x, y, z);
LimboDecay.applySpreadDecay(world, x, y, z);
}
}
}