From aac7c7bffb6e1fe3f981a4facb2adda719d9d12d Mon Sep 17 00:00:00 2001 From: wookieejedi Date: Fri, 5 Sep 2025 23:45:43 -0400 Subject: [PATCH] Fix for modern Thruster Particles Allows `$Thruster Effect:` by fixing copy-paste bug. Tested and fix confirms to work. --- code/ship/ship.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ship/ship.cpp b/code/ship/ship.cpp index 786f9d2ce50..b4f9dbc9cdc 100644 --- a/code/ship/ship.cpp +++ b/code/ship/ship.cpp @@ -4976,7 +4976,7 @@ static void parse_ship_values(ship_info* sip, const bool is_template, const bool else if ( optional_string("$Afterburner Particle Bitmap:") ) afterburner = true; else if ( optional_string("$Thruster Effect:") ) { - afterburner = true; + afterburner = false; modern_particle = true; } else if ( optional_string("$Afterburner Effect:") ) {