diff --git a/src/hooks/protections/can_apply_data.cpp b/src/hooks/protections/can_apply_data.cpp index 8347425a..f01e17ba 100644 --- a/src/hooks/protections/can_apply_data.cpp +++ b/src/hooks/protections/can_apply_data.cpp @@ -1539,6 +1539,11 @@ namespace big case sync_node_id("CPedGameStateDataNode"): { const auto game_state_node = (CPedGameStateDataNode*)(node); + if (game_state_node->m_weapon_hash == "WEAPON_STRICKLER"_J) + { + notify::crash_blocked(sender, "invalid weapon"); + return true; + } if (game_state_node->m_on_mount) { notify::crash_blocked(sender, "mount flag");