Skip to content

Commit

Permalink
Relaxed warnings for price differences
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Dec 18, 2014
1 parent 9819356 commit 4962326
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/update_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@ def validate(self, widget):
# It seems that stations usually pay within 25% of the
# asking price as a buy-back price. If the user gives
# us something out of those bounds, check with them.
if paying < int(asking * 0.75) or \
paying < asking - 200:
if paying < int(asking * 0.72) or \
paying < asking - 250:
widget.bell()
ok = mbox.askokcancel(
"Are you sure about that?",
Expand Down

0 comments on commit 4962326

Please sign in to comment.