TU43 Bug fixes

Fixed the following:
Cape behavior,
Magma block spawn
Fossil Spawn
Igloo Spawn / other issues
Classic Crafting
Server-sided loot table fix
This commit is contained in:
Tranqlmao
2026-07-13 16:59:00 -04:00
parent 87dca773f4
commit 680f539f30
9 changed files with 68 additions and 14 deletions
+4 -1
View File
@@ -182,7 +182,10 @@ bool UIScene::needsReloaded()
const bool shouldUse1080 = SceneShouldUse1080p(moviePath);
if(shouldUse1080 && m_loadedResolution != eSceneResolution_1080)
return true;
{
if(app.hasArchiveFile(getMoviePath() + L"1080.swf"))
return true;
}
if(!shouldUse1080 && m_loadedResolution == eSceneResolution_1080)
return true;
}