fixed moon log spam
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
### Bug fixes
|
||||
- Fixed a broken model for the aqueous accumulator. (#1557) @Redeix
|
||||
- Fixed broken recipes for the aqueous accumulator. @Pyritie
|
||||
- Fixed log spam on the moon @Pyritie
|
||||
|
||||
## [0.10.7] - 07-08-2025
|
||||
- Fixed an issue with mod dependencies
|
||||
|
||||
@@ -7,6 +7,8 @@ const ROCK_LAYER_HEIGHT = 40;
|
||||
|
||||
// Bare minimum
|
||||
TFCEvents.createChunkDataProvider('moon', event => {
|
||||
const emptyLayer = TFC.misc.lerpFloatLayer(0, 0, 0, 0);
|
||||
|
||||
var aquifer = [];
|
||||
let i = 0;
|
||||
while (i < 16) {
|
||||
@@ -21,7 +23,7 @@ TFCEvents.createChunkDataProvider('moon', event => {
|
||||
}
|
||||
|
||||
event.partial((data, chunk) => {
|
||||
data.generatePartial(0, 0, 0, 0, 0)
|
||||
data.generatePartial(emptyLayer, emptyLayer, 0, 0, 0)
|
||||
})
|
||||
event.full((data, chunk) => {
|
||||
data.generateFull(heights, aquifer)
|
||||
|
||||
Reference in New Issue
Block a user