diff options
| author | Ritabrata Das <[email protected]> | 2025-02-19 21:40:54 +0530 |
|---|---|---|
| committer | Ritabrata Das <[email protected]> | 2025-02-19 21:40:54 +0530 |
| commit | 412d75439934201968a701abc043abc63f802dba (patch) | |
| tree | ead2be4bc9a92575426d79b54a709496f33e2e62 /plugins/smoke_on_damage | |
| parent | d2bd9599c29f9d77a14a7381a2046585f701d4c6 (diff) | |
Fix critical bug in smoke plugin
Diffstat (limited to 'plugins/smoke_on_damage')
| -rw-r--r-- | plugins/smoke_on_damage/Plugin.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/smoke_on_damage/Plugin.py b/plugins/smoke_on_damage/Plugin.py index 12effc8..ed7fcf7 100644 --- a/plugins/smoke_on_damage/Plugin.py +++ b/plugins/smoke_on_damage/Plugin.py @@ -38,7 +38,9 @@ class Plugin: message_to_client.append(FSNETCMD_AIRCMD.set_afterburner(player.aircraft.id, False, True)) - return False + return False + else: + return True def on_weapon_config(self, data, player, message_to_client, message_to_server): if ENABLED: |
