diff options
| -rw-r--r-- | taipan.c | 6 | 
1 files changed, 4 insertions, 2 deletions
| @@ -30,7 +30,7 @@  /* define this to start the game in the year 1869, with  	1000 capacity, 20 guns, and 1 billion cash and bank. */ -#define TIMEWARP +// #define TIMEWARP  /* define this to start the game in a 99% damaged ship */  // #define ALMOST_DEAD @@ -1365,7 +1365,8 @@ void cash_or_guns(void)     } else {  #ifdef TIMEWARP  		year = 1869; -      cash = 1000000000L; +      // cash = 1000000000L; +      cash = 4294000000L;        // cash = 3500000L;  #ifdef BIGNUM  		big_copy(bank, big1M); @@ -2849,6 +2850,7 @@ char would_overflow(unsigned long a, unsigned long b) {  }  void too_much_cash(void) { +	clear_msg_window();  	cputs("\r\nYou cannot carry so much cash, Taipan!");  	cputs("\r\nYour ship would sink under the weight");  	cputs("\r\nof your riches.\r\n"); | 
