From b16577d82a46be5c20219be6efe75c3dd3320760 Mon Sep 17 00:00:00 2001 From: Wanne Date: Mon, 1 Aug 2011 12:09:03 +0000 Subject: [PATCH] - Bugfix: Old IMP Creation o Fixed bug with IMP Attributes selection, where you could lower value to 0 and get bonus points git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@4593 3b4a5df2-a311-0410-b5c6-a8a6f20db521 --- Laptop/IMP Attribute Selection.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Laptop/IMP Attribute Selection.cpp b/Laptop/IMP Attribute Selection.cpp index 245aacdf..a9e09ff4 100644 --- a/Laptop/IMP Attribute Selection.cpp +++ b/Laptop/IMP Attribute Selection.cpp @@ -94,9 +94,9 @@ INT32 iHealthMinimum = gGameExternalOptions.iMinAttribute; INT32 iLeaderShipMinimum = gGameExternalOptions.iMinAttribute; INT32 iWisdomMinimum = gGameExternalOptions.iMinAttribute; INT32 iMarkmanshipMinimum = gGameExternalOptions.iMinAttribute; -INT32 iMechanicalMinimum = 0; -INT32 iMedicalMinimum = 0; -INT32 iExplosivesMinimum = 0; +INT32 iMechanicalMinimum = gGameExternalOptions.iMinAttribute; +INT32 iMedicalMinimum = gGameExternalOptions.iMinAttribute; +INT32 iExplosivesMinimum = gGameExternalOptions.iMinAttribute;