- Changed the default player.startitem amount from 0 to 1.

SVN r503 (trunk)
This commit is contained in:
Randy Heit 2007-03-13 00:59:29 +00:00
parent 453a6250a5
commit b49d4333b0
2 changed files with 6 additions and 3 deletions

View file

@ -1,3 +1,6 @@
March 12, 2007
- Changed the default player.startitem amount from 0 to 1.
March 9, 2007 March 9, 2007
- Converted the TTY startup screen to a class for Linux. - Converted the TTY startup screen to a class for Linux.

View file

@ -3995,11 +3995,11 @@ static void PlayerStartItem (APlayerPawn *defaults, Baggage &bag)
SC_MustGetString(); SC_MustGetString();
di->Name = sc_String; di->Name = sc_String;
di->probability=255; di->probability = 255;
di->amount=0; di->amount = 1;
if (CheckNumParm()) if (CheckNumParm())
{ {
di->amount=sc_Number; di->amount = sc_Number;
} }
di->Next = bag.DropItemList; di->Next = bag.DropItemList;
bag.DropItemList = di; bag.DropItemList = di;