quick check with linters

This commit is contained in:
MihailRis
2024-05-10 12:34:05 +03:00
parent 92f185ab51
commit 9522aedeec
55 changed files with 129 additions and 184 deletions
+4 -4
View File
@@ -228,15 +228,15 @@ void ContentLoader::loadCustomBlockModel(Block& def, dynamic::Map* primitives) {
def.modelBoxes.push_back(modelbox);
if (boxarr->size() == 7)
for (uint i = 6; i < 12; i++) {
for (uint j = 6; j < 12; j++) {
def.modelTextures.push_back(boxarr->str(6));
}
else if (boxarr->size() == 12)
for (uint i = 6; i < 12; i++) {
def.modelTextures.push_back(boxarr->str(i));
for (uint j = 6; j < 12; j++) {
def.modelTextures.push_back(boxarr->str(j));
}
else
for (uint i = 6; i < 12; i++) {
for (uint j = 6; j < 12; j++) {
def.modelTextures.push_back("notfound");
}
}