In the config file it states that if you set horizontal or vertical stacking to 0 then the forge can be of any size vertically or horizontally.
I looked through Forge.java and found a problem.
lines 118 - 120 if the entered value is 0 it wont make a Dwarf Forge.
// Can't be a Forge beyond the vertical stacking limit.
if (stack <= 0) {
return false;
}
In the config file it states that if you set horizontal or vertical stacking to 0 then the forge can be of any size vertically or horizontally. I looked through Forge.java and found a problem.
https://github.com/dredhorse/DwarfForge/blob/master/src/main/java/org/simiancage/bukkit/DwarfForge/Forge.java#L118
lines 118 - 120 if the entered value is 0 it wont make a Dwarf Forge. // Can't be a Forge beyond the vertical stacking limit. if (stack <= 0) { return false; }
Do you think this could be fixed?