mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix extract zip writing lowercase files (#8221)
This commit is contained in:
parent
eb5ac723ee
commit
a8311ad57f
1 changed files with 1 additions and 1 deletions
|
@ -761,7 +761,7 @@ int ModApiMainMenu::l_extract_zip(lua_State *L)
|
||||||
|
|
||||||
io::IFileSystem *fs = RenderingEngine::get_filesystem();
|
io::IFileSystem *fs = RenderingEngine::get_filesystem();
|
||||||
|
|
||||||
if (!fs->addFileArchive(zipfile,true,false,io::EFAT_ZIP)) {
|
if (!fs->addFileArchive(zipfile, false, false, io::EFAT_ZIP)) {
|
||||||
lua_pushboolean(L,false);
|
lua_pushboolean(L,false);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue