From 2e7bd4de4b385dc714e887557733243403e0aed1 Mon Sep 17 00:00:00 2001 From: Pavel Penev Date: Sun, 27 Oct 2019 10:56:54 +0200 Subject: [PATCH] Fixed a bug with the NukeLaunch's Player palette --- OpenRA.Mods.Common/Projectiles/NukeLaunch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Projectiles/NukeLaunch.cs b/OpenRA.Mods.Common/Projectiles/NukeLaunch.cs index bd7c36bbf0..7d40bdc7e2 100644 --- a/OpenRA.Mods.Common/Projectiles/NukeLaunch.cs +++ b/OpenRA.Mods.Common/Projectiles/NukeLaunch.cs @@ -67,7 +67,7 @@ namespace OpenRA.Mods.Common.Effects this.trailSequences = trailSequences; this.trailPalette = trailPalette; if (trailUsePlayerPalette) - trailPalette += firedBy.InternalName; + this.trailPalette += firedBy.InternalName; this.trailInterval = trailInterval; this.trailDelay = trailDelay;