diff options
-rw-r--r-- | taipan.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2253,6 +2253,8 @@ void good_prices(void) cputs("risen"); } else { price[i] /= 5; + /* somehow general cargo dropped to 0 once. stop it. */ + if(price[i] < 1) price[i] = 1; cputs("dropped"); } cputs(" to "); |