check for more minetest texture names

master
poikilos 2019-05-25 07:07:52 -04:00
parent 60aa3d434e
commit 764933097f
1 changed files with 4 additions and 1 deletions

View File

@ -464,8 +464,11 @@ bool UserInterface::loadNextTexture(int direction)
);
vector<wstring> names;
names.push_back(partial+L"_mesh");
names.push_back(partial+L"1");
names.push_back(partial);
names.push_back(partial+L"1");
names.push_back(partial+L"_child");
names.push_back(partial+L"_female");
names.push_back(partial+L"_male");
for(auto name : names) {
for(auto extension : dotExtensions) {