Skip to content

Release 29

Compare
Choose a tag to compare
@slackydev slackydev released this 03 Jul 11:33
· 22 commits to master since this release
  • SimpleOCR updated to latest version.

  • Return old fix for bankscreen and other interface titles overlapping the uptext of the mainscreen.

  • Fix Inventory.CountItemStack, add Inventory.CountStack

  • Adds banking tweaks, deprecates a few older constructs.

function TRSBank.WithdrawItem(Item: TRSBankWithdrawItem; UseQuantityButtons: Boolean): Boolean;
function TRSBank.DepositItem(Item: TRSBankDepositItem; UseQuantityButtons: Boolean): Boolean;

Replaced by methods that uses the one structure for both deposits and withdrawals.

function TRSBank.WithdrawItem(out item: TRSBankItem; useQuantityButtons: Boolean): Boolean;
function TRSBank.DepositItem(item: TRSBankItem; useQuantityButtons: Boolean): Boolean; overload;