aboutsummaryrefslogtreecommitdiffstats
path: root/src/objects
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-11-08 21:59:13 +0200
committerSergeanur <s.anureev@yandex.ua>2020-11-08 21:59:13 +0200
commit23d294fef51d468dcdf0b2744a2974ede9792fa3 (patch)
tree3190f06c762656d9bdcdd36f6f5d991d34b5f4c9 /src/objects
parentfe5d0c9cdf582026960c87988adcad31d6e67e13 (diff)
Possibly fix pickup money text
Diffstat (limited to 'src/objects')
-rw-r--r--src/objects/Object.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/objects/Object.cpp b/src/objects/Object.cpp
index 293e5274..93b6d581 100644
--- a/src/objects/Object.cpp
+++ b/src/objects/Object.cpp
@@ -38,7 +38,7 @@ CObject::CObject(void)
m_colour2 = 0;
m_colour1 = m_colour2;
m_nBonusValue = 0;
- // m_nCostValue = 0; // TODO(Miami)
+ m_nCostValue = 0;
bIsPickup = false;
bPickupObjWithMessage = false;
bOutOfStock = false;
@@ -444,7 +444,7 @@ CObject::Init(void)
m_colour2 = 0;
m_nBonusValue = 0;
bIsWeapon = false;
-// TODO(MIAMI): some new field here
+ m_nCostValue = 0;
m_pCollidingEntity = nil;
CColPoint point;
CEntity* outEntity = nil;