From 971f04e88f927b6ce7de1caba4a5129714fc828b Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 22 Jan 2023 21:00:24 -0800 Subject: [PATCH] Add XLB suffix for summons --- components/SummonUnit/index.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/components/SummonUnit/index.tsx b/components/SummonUnit/index.tsx index 63346678..9da0b566 100644 --- a/components/SummonUnit/index.tsx +++ b/components/SummonUnit/index.tsx @@ -139,11 +139,14 @@ const SummonUnit = ({ ] let suffix = '' - if ( + if (gridSummon.object.uncap.xlb && gridSummon.uncap_level == 6) { + suffix = '_03' + } else if ( upgradedSummons.indexOf(summon.granblue_id.toString()) != -1 && gridSummon.uncap_level == 5 - ) + ) { suffix = '_02' + } // Generate the correct source for the summon if (unitType == 0 || unitType == 2)