From 439bf27cb2395718940f6c4055ef2835d67efbf6 Mon Sep 17 00:00:00 2001 From: vietdungdev Date: Sat, 30 May 2026 19:49:47 +0700 Subject: [PATCH] update belt data --- pkg/data/belt.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkg/data/belt.go b/pkg/data/belt.go index 419ff7e..716de80 100644 --- a/pkg/data/belt.go +++ b/pkg/data/belt.go @@ -30,14 +30,16 @@ func (b Belt) GetFirstPotion(potionType PotionType) (Position, bool) { func (b Belt) Rows() int { switch b.Name { - case "": - return 1 case "Sash", "LightBelt": return 2 case "Belt", "HeavyBelt": return 3 - default: + case "PlatedBelt", + "DemonhideSash", "SharkskinBelt", "MeshBelt", "BattleBelt", "WarBelt", + "SpiderwebSash", "VampirefangBelt", "MithrilCoil", "TrollBelt", "ColossusGirdle": return 4 + default: + return 1 } }