From b49d4333b0eb59131cf1976c36f4db72f3df0388 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Tue, 13 Mar 2007 00:59:29 +0000 Subject: [PATCH] - Changed the default player.startitem amount from 0 to 1. SVN r503 (trunk) --- docs/rh-log.txt | 3 +++ src/thingdef.cpp | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/rh-log.txt b/docs/rh-log.txt index 71d3e0c66..0af7cd95a 100644 --- a/docs/rh-log.txt +++ b/docs/rh-log.txt @@ -1,3 +1,6 @@ +March 12, 2007 +- Changed the default player.startitem amount from 0 to 1. + March 9, 2007 - Converted the TTY startup screen to a class for Linux. diff --git a/src/thingdef.cpp b/src/thingdef.cpp index 96121ead2..194be23a9 100644 --- a/src/thingdef.cpp +++ b/src/thingdef.cpp @@ -3995,11 +3995,11 @@ static void PlayerStartItem (APlayerPawn *defaults, Baggage &bag) SC_MustGetString(); di->Name = sc_String; - di->probability=255; - di->amount=0; + di->probability = 255; + di->amount = 1; if (CheckNumParm()) { - di->amount=sc_Number; + di->amount = sc_Number; } di->Next = bag.DropItemList; bag.DropItemList = di;