diff --git a/src/npctrade.cpp b/src/npctrade.cpp index fb86e325a14df..42f2f2a05d64b 100644 --- a/src/npctrade.cpp +++ b/src/npctrade.cpp @@ -754,5 +754,5 @@ bool npc_trading::trade( npc &np, int cost, const std::string &deal ) // Will the NPC accept the trade that's currently on offer? bool trading_window::npc_will_accept_trade( const npc &np ) const { - return np.will_exchange_items_freely() || your_balance + np.max_credit_extended() > 0; + return np.will_exchange_items_freely() || your_balance + np.max_credit_extended() >= 0; }