aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/Feature.cpp
diff options
context:
space:
mode:
authorLoki Rautio <lokirautio@gmail.com>2026-03-04 03:56:03 -0600
committerLoki Rautio <lokirautio@gmail.com>2026-03-04 03:56:03 -0600
commit42aec6dac53dffa6afe072560a7e1d4986112538 (patch)
tree0836426857391df1b6a83f6368a183f83ec9b104 /Minecraft.World/Feature.cpp
parentc9d58eeac7c72f0b3038e084667b4d89a6249fce (diff)
parentef9b6fd500dfabd9463267b0dd9e29577eea8a2b (diff)
Merge branch 'main' into pr/win64-world-saves
# Conflicts: # Minecraft.Client/MinecraftServer.cpp # README.md
Diffstat (limited to 'Minecraft.World/Feature.cpp')
-rw-r--r--Minecraft.World/Feature.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/Minecraft.World/Feature.cpp b/Minecraft.World/Feature.cpp
index 301bd26c..b4d9a6ee 100644
--- a/Minecraft.World/Feature.cpp
+++ b/Minecraft.World/Feature.cpp
@@ -1,5 +1,6 @@
#include "stdafx.h"
#include "net.minecraft.world.level.h"
+#include "net.minecraft.world.level.tile.h"
#include "Feature.h"
@@ -13,6 +14,10 @@ Feature::Feature(bool doUpdate)
this->doUpdate = doUpdate;
}
+void Feature::applyFeature(Level *level, Random *random, int xChunk, int zChunk)
+{
+}
+
void Feature::placeBlock(Level *level, int x, int y, int z, int tile)
{
placeBlock(level, x, y, z, tile, 0);
@@ -22,10 +27,10 @@ void Feature::placeBlock(Level *level, int x, int y, int z, int tile, int data)
{
if (doUpdate)
{
- level->setTileAndData(x, y, z, tile, data);
+ level->setTileAndData(x, y, z, tile, data, Tile::UPDATE_ALL);
}
else
{
- level->setTileAndDataNoUpdate(x, y, z, tile, data);
+ level->setTileAndData(x, y, z, tile, data, Tile::UPDATE_CLIENTS);
}
-}
+} \ No newline at end of file