From 98ce18385a894a63a6a8cee9ec56441bf7d9e467 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 10 May 2020 19:32:09 -0400 Subject: [PATCH] CRidley: Fix missing comma in skWingEffects Previously all the elements past WingSmokeSmall8 would be off by one. This corrects that. --- Runtime/MP1/World/CRidley.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/MP1/World/CRidley.cpp b/Runtime/MP1/World/CRidley.cpp index 8d5f2af5d..07c4dfc74 100644 --- a/Runtime/MP1/World/CRidley.cpp +++ b/Runtime/MP1/World/CRidley.cpp @@ -139,7 +139,7 @@ constexpr std::array skWingEffects{ "WingSmokeSmall5"sv, "WingSmokeSmall6"sv, "WingSmokeSmall7"sv, - "WingSmokeSmall8"sv + "WingSmokeSmall8"sv, "WingFire1"sv, "WingFire2"sv, "WingFire3"sv,