summaryrefslogtreecommitdiff
path: root/src/controller.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/controller.cpp')
-rw-r--r--src/controller.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/controller.cpp b/src/controller.cpp
index 737a01b9..23ae9bc8 100644
--- a/src/controller.cpp
+++ b/src/controller.cpp
@@ -28,9 +28,6 @@ Controlled::Controlled(int type):
Being(type, 65535),
mCountDown(0)
{
- mStats.base.resize(NB_STATS_BEING, 1); //TODO: fill with the real values
- mStats.absoluteModificator.resize(NB_STATS_BEING, 0);
- mStats.percentModificators.resize(NB_STATS_BEING);
}
void Controlled::update()
@@ -67,9 +64,3 @@ void Controlled::die()
Being::die();
}
-void Controlled::calculateStats()
-{
- /* All base stats of a monster should be set directly by the monster
- * database, so there is nothing we should have to calculate here.
- */
-}