Merge branch 'main' into headless-mode
This commit is contained in:
@@ -245,7 +245,7 @@ void scripting::on_content_load(Content* content) {
|
|||||||
lua::pop(L);
|
lua::pop(L);
|
||||||
}
|
}
|
||||||
if (lua::getglobal(L, "item")) {
|
if (lua::getglobal(L, "item")) {
|
||||||
push_properties_tables(L, indices.blocks);
|
push_properties_tables(L, indices.items);
|
||||||
lua::setfield(L, "properties");
|
lua::setfield(L, "properties");
|
||||||
lua::pop(L);
|
lua::pop(L);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -180,7 +180,7 @@ namespace util {
|
|||||||
}
|
}
|
||||||
|
|
||||||
TCoord getHeight() const {
|
TCoord getHeight() const {
|
||||||
return sizeX;
|
return sizeY;
|
||||||
}
|
}
|
||||||
|
|
||||||
const std::vector<T>& getBuffer() const {
|
const std::vector<T>& getBuffer() const {
|
||||||
|
|||||||
@@ -422,7 +422,7 @@ void Chunks::set(
|
|||||||
if (lz == 0 && (chunk = getChunk(cx, cz - 1))) {
|
if (lz == 0 && (chunk = getChunk(cx, cz - 1))) {
|
||||||
chunk->flags.modified = true;
|
chunk->flags.modified = true;
|
||||||
}
|
}
|
||||||
if (lx == CHUNK_W - 1 && (chunk = getChunk(cx, cz))) {
|
if (lx == CHUNK_W - 1 && (chunk = getChunk(cx + 1, cz))) {
|
||||||
chunk->flags.modified = true;
|
chunk->flags.modified = true;
|
||||||
}
|
}
|
||||||
if (lz == CHUNK_D - 1 && (chunk = getChunk(cx, cz + 1))) {
|
if (lz == CHUNK_D - 1 && (chunk = getChunk(cx, cz + 1))) {
|
||||||
|
|||||||
Reference in New Issue
Block a user