summaryrefslogtreecommitdiff
path: root/src/game-server/attribute.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game-server/attribute.h')
-rw-r--r--src/game-server/attribute.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/game-server/attribute.h b/src/game-server/attribute.h
index 8c8d3b8e..82303ff8 100644
--- a/src/game-server/attribute.h
+++ b/src/game-server/attribute.h
@@ -132,7 +132,11 @@ class AttributeModifiersEffect
class Attribute
{
public:
- Attribute() {throw;} // DEBUG; Find improper constructions
+ Attribute()
+ : mBase(0)
+ , mMaxValue(0)
+ , mMinValue(0)
+ {throw;} // DEBUG; Find improper constructions
Attribute(const AttributeManager::AttributeInfo &info);