Fix: SE025 Problem: Attempting to use a count with the throw command causes the game to crash with a segmentation violation. Compatible with: Slash'EM 0.0.5E6F1 Author: Warren Cheung, wac@intergate.bc.ca J. Ali Harlow, ali@avrc.city.ac.uk Date: 26 Nov 1999 *** src/invent.c.orig Fri Nov 26 07:47:35 1999 --- src/invent.c Mon Nov 22 09:55:32 1999 *************** *** 856,862 **** * split off a single item anyway */ allowcnt = 1; if(cnt == 0 && prezero) return((struct obj *)0); ! if (cnt == 1 && cnt <= otmp->quan) { multi_one = TRUE; multi = 0; } --- 856,862 ---- * split off a single item anyway */ allowcnt = 1; if(cnt == 0 && prezero) return((struct obj *)0); ! if (cnt == 1) { multi_one = TRUE; multi = 0; }