delete extra

This commit is contained in:
A-lex-Ra
2023-12-17 22:57:43 +06:00
parent a845d8fed5
commit 785cd215a8
2 changed files with 3 additions and 1 deletions
-1
View File
@@ -52,7 +52,6 @@ Engine::Engine(EngineSettings& settings, EnginePaths* paths)
auto resdir = paths->getResources(); auto resdir = paths->getResources();
contentPacks.push_back(ContentPack::read(resdir/path("content/base"))); contentPacks.push_back(ContentPack::read(resdir/path("content/base")));
contentPacks.push_back(ContentPack::read(resdir / path("content/mcclassic")));
loadContent(); loadContent();
Audio::initialize(); Audio::initialize();
+3
View File
@@ -300,6 +300,9 @@ void BlocksRenderer::blockCubeShaded(int x, int y, int z,
ivec3 X(1, 0, 0); ivec3 X(1, 0, 0);
ivec3 Y(0, 1, 0); ivec3 Y(0, 1, 0);
ivec3 Z(0, 0, 1); ivec3 Z(0, 0, 1);
face(vec3(0, 100, 0), X, Y, Z, Z, 1.0f, 1.0f, 0.0f, texfaces[0], true);
ivec3 loff(0); ivec3 loff(0);
ivec3 coord(x, y, z); ivec3 coord(x, y, z);
if (block->rotatable) { if (block->rotatable) {