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
+1 -3
View File
@@ -95,9 +95,7 @@ Content* ContentBuilder::build() {
}
blockDefsIndices.push_back(def);
if (groups->find(def->drawGroup) == groups->end()) {
groups->insert(def->drawGroup);
}
groups->insert(def->drawGroup);
}
std::vector<ItemDef*> itemDefsIndices;
+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");
}
}
+1 -1
View File
@@ -74,7 +74,7 @@ static bool resolve_dependencies (
const ContentPack* pack,
const std::unordered_map<std::string, ContentPack>& packs,
std::vector<std::string>& allNames,
std::vector<std::string>& added,
const std::vector<std::string>& added,
std::queue<const ContentPack*>& queue,
bool resolveWeaks
) {