forked from brmlab/brmbar-github
Fix Shop keyword arguments.
This commit is contained in:
parent
04f98147fd
commit
3933514e86
1 changed files with 4 additions and 4 deletions
|
@ -52,10 +52,10 @@ class Shop:
|
||||||
return cls(
|
return cls(
|
||||||
db,
|
db,
|
||||||
currency_id=currency_id,
|
currency_id=currency_id,
|
||||||
profits=profits_id,
|
profits_id=profits_id,
|
||||||
cash=cash_id,
|
cash_id=cash_id,
|
||||||
excess=excess_id,
|
excess_id=excess_id,
|
||||||
deficit=deficit_id,
|
deficit_id=deficit_id,
|
||||||
)
|
)
|
||||||
|
|
||||||
def sell(self, item, user, amount=1):
|
def sell(self, item, user, amount=1):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue