Merge pull request #366 from supitsmike/main

Change 4 character name limit to 3 characters
This commit is contained in:
Maurice Heumann 2023-03-20 18:09:58 +01:00 committed by GitHub
commit cca65916a9

View File

@ -29,6 +29,9 @@ namespace patches
{
// don't make script errors fatal error
utils::hook::call(game::select(0x1412CAC4D, 0x140158EB2), script_errors_stub);
// Change 4 character name limit to 3 characters
utils::hook::set<uint8_t>(game::select(0x14224DBB4, 0x1405312A8), 3);
}
};
}