From b773bfbb60a1fe89d269d988c1b4d795fe3373b8 Mon Sep 17 00:00:00 2001 From: XxXAdvisaryXxX Date: Wed, 28 Jan 2026 20:52:40 -0800 Subject: [PATCH] Adjust dimensions of Worn button in bank interface Previous bound was slightly slightly too small and not grabbing the black. --- osrs/interfaces/mainscreen/bank.simba | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osrs/interfaces/mainscreen/bank.simba b/osrs/interfaces/mainscreen/bank.simba index e7530db..7dffd74 100644 --- a/osrs/interfaces/mainscreen/bank.simba +++ b/osrs/interfaces/mainscreen/bank.simba @@ -241,7 +241,7 @@ begin btnColors := [[$0F1043, 0], [$23269F, 0.227]]; with Self.Bounds do begin - Self.Worn := new TRSButton([X2-40, Y1+38, X2-7, Y1+71], btnColors); + Self.Worn := new TRSButton([X2-42, Y1+36, X2-5, Y1+73], btnColors); Self.Buttons[ERSBankButton.SETTINGS] := new TRSButton([X1+34, Y1+7, X1+54, Y1+27]); Self.Buttons[ERSBankButton.TUTORIAL] := new TRSButton([X1+58, Y1+7, X1+78, Y1+27]);