Skip to content

Commit 6a352c6

Browse files
Fix casing for Gametab and GameTab references
Just capitilized something and removed a debugging feature i forgot to remove.
1 parent 893ac17 commit 6a352c6

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

osrs/interfaces/gametabs/combat.simba

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ begin
1515
with Gametab.TopLeft do
1616
Self.Boxes.TopLeftBox:= [X+20, Y+45, X+85, Y+90];
1717

18-
with Gametab.topleft do
18+
with Gametab.TopLeft do
1919
Self.Boxes.TopRightBox:= [X+95, Y+45, X+165, Y+90];
2020

21-
with Gametab.topleft do
21+
with Gametab.TopLeft do
2222
Self.Boxes.BottomLeftBox:=[X+20, Y+100, X+85, Y+146];
2323

24-
with Gametab.topleft do
24+
with Gametab.TopLeft do
2525
Self.Boxes.BottomRightBox:= [X+95, Y+100, X+165, Y+146];
2626

27-
with GameTab.topleft do
27+
with GameTab.TopLeft do
2828
Self.Boxes.CombatLvlBox:= [X+45, Y+25, X+135, Y+40];
2929

3030
with GameTab.Bounds do
@@ -34,7 +34,6 @@ begin
3434
Self.Boxes.CategoryBox:=[X1+45,Y1+225,X2-45,Y2];
3535

3636
Self.AttackStyles :=[Self.boxes.topleftbox, Self.Boxes.TopRightbox,Self.Boxes.BottomLeftbox, Self.Boxes.BottomRightbox];
37-
showontarget (Self.attackstyles);
3837
end;
3938

4039

0 commit comments

Comments
 (0)