We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62f29d3 commit fdc1a2fCopy full SHA for fdc1a2f
thcrap_tsa/src/thcrap_tsa.cpp
@@ -141,7 +141,9 @@ int TH_STDCALL thcrap_plugin_init()
141
patchhook_register("world*.msg", patch_msg_dlg, NULL); // th185
142
patchhook_register("e*.msg", patch_msg_end, NULL); // th10+ endings
143
144
- patchhook_register("*.anm", patch_anm, tlnote_remove_size_hook);
+ if (game_id != TH19) {
145
+ patchhook_register("*.anm", patch_anm, tlnote_remove_size_hook);
146
+ }
147
// Remove TL notes when retrying a stage
148
patchhook_register("*.std", nullptr, tlnote_remove_size_hook);
149
return 0;
0 commit comments