Fixed the incorrect message when attempting to repair dead robots

(ref. alexbatalov/fallout2-ce#459)
This commit is contained in:
NovaRain
2025-02-19 12:16:24 +08:00
parent c4f6f9c9c7
commit 03cc1f8ae4
+3
View File
@@ -4352,6 +4352,9 @@ void BugFixes::init() {
// Fix to prevent the game from hanging when reloading a weapon overloaded with ammo via the interface bar
SafeWrite8(0x4787A2, 0x8D); // jz > jge (item_w_try_reload_)
SafeWrite8(0x45F5BD, 0x7E); // jz > jle (intface_toggle_item_state_)
// Fix the incorrect message when attempting to repair dead robots
SafeWrite32(0x4AB1BE, 601); // skill_use_ (was 1101 in skill.msg)
}
}