Xfel Posted September 8, 2012 Posted September 8, 2012 Hi, I'm trying to write some code that looks in all six block directions like for(ForgeDirection dir:ForgeDirection.values()){ ... } However, that doesn't work as it includes the UNKNOWN value, too. So, I'd suggest a field like ForgeDirection.DIRS (or method dirs()) which returns an array containing the six directions, but not the UNKNOWN one. Quote
LexManos Posted September 8, 2012 Posted September 8, 2012 if (dir != UNKNOWN) Or for(int x = 0; x < 6; x++) Or for (ForgeDirection dir : EnumSet.complementOf(EnumSet.of(UNKNOWN))) Solved. Quote I do Forge for free, however the servers to run it arn't free, so anything is appreciated. Consider supporting the team on Patreon
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.