aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/Feature.cpp
diff options
context:
space:
mode:
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