What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

profession buddy task editor cant set bank deposit amount (WITH FIX!)

Garion

New Member
Joined
Jan 12, 2011
Messages
16
Reaction score
0
in PutItemInBankAction.cs

private void DepositChanged(object sender, MetaPropArgs e)
{
Properties["Deposit"].Show = Deposit == DepositWithdrawAmount.Amount;
RefreshPropertyGrid();
}

needs to be

private void DepositChanged(object sender, MetaPropArgs e)
{
Properties["Amount"].Show = Deposit == DepositWithdrawAmount.Amount;
RefreshPropertyGrid();
}
 
Thanks for pointing that out.
Reporting to dev.
 
Back
Top