Whops
This commit is contained in:
parent
bed6c410b6
commit
7ad090b5f1
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ public enum ForgeDirection
|
|||
|
||||
public static ForgeDirection getOrientation(int id)
|
||||
{
|
||||
if (id > 0 && id < ForgeDirection.values().length)
|
||||
if (id >= 0 && id < ForgeDirection.values().length)
|
||||
{
|
||||
return ForgeDirection.values()[id];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue