Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions osrs/interfaces/handlers/inventory_layout.simba
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ begin
for j := 0 to High(items) do
for n := 0 to High(bitems) do
begin
if items[j] <> bitems[n].Item then Continue;
if not SameText(items[j], bitems[n].Item) then Continue;

stack := Inventory.Slots.ReadStack(i);

Expand All @@ -201,13 +201,6 @@ begin
Exit;
end;

for i := 0 to High(bitems) do
begin
if bitems[i].Quantity <= 0 then Continue;
if not Bank.Deposit(bitems[i], True) then
Exit;
end;

Result := True;
end;

Expand Down
Loading