Modified sequencing

This commit is contained in:
2023-10-22 12:15:48 -04:00
parent cc7d741681
commit c3586a70fd
+1 -1
View File
@@ -68,7 +68,7 @@ public class Terrain {
// Zones with a zero blend inherit from their parent terrain
if (this.zone.template.max_blend == 0) {
Zone parentZone = this.getNextZoneWithTerrain(this.zone);
Zone parentZone = this.getNextZoneWithTerrain(this.zone.parent);
max_blend = parentZone.template.max_blend;
min_blend = parentZone.template.min_blend;
}