mirror of
https://github.com/Cubitect/cubiomes.git
synced 2025-09-10 12:58:26 -04:00
getStructureConfig now returns 0 for Fortress when MC is Beta 1.8
This commit is contained in:
parent
fffa4d78a5
commit
720fa2d3fb
@ -150,7 +150,7 @@ int getStructureConfig(int structureType, int mc, StructureConfig *sconf)
|
|||||||
return 1;
|
return 1;
|
||||||
case Fortress:
|
case Fortress:
|
||||||
*sconf = mc <= MC_1_15 ? s_fortress_115 : s_fortress;
|
*sconf = mc <= MC_1_15 ? s_fortress_115 : s_fortress;
|
||||||
return 1;
|
return mc >= MC_1_0;
|
||||||
case Bastion:
|
case Bastion:
|
||||||
*sconf = s_bastion;
|
*sconf = s_bastion;
|
||||||
return mc >= MC_1_16;
|
return mc >= MC_1_16;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user