summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/being/playerinfo.cpp15
-rw-r--r--src/being/playerinfo.h13
2 files changed, 0 insertions, 28 deletions
diff --git a/src/being/playerinfo.cpp b/src/being/playerinfo.cpp
index 0a89bd7e1..d56934d31 100644
--- a/src/being/playerinfo.cpp
+++ b/src/being/playerinfo.cpp
@@ -187,21 +187,6 @@ const std::pair<int, int> getStatExperience(const AttributesT id)
return std::pair<int, int>(a, b);
}
-void setStatExperience(const AttributesT id,
- const int have,
- const int need,
- const Notify notify)
-{
- Stat &stat = mData.mStats[id];
-
- const int oldExp = stat.exp;
- const int oldExpNeed = stat.expNeed;
- stat.exp = have;
- stat.expNeed = need;
- if (notify == Notify_true)
- triggerStat(id, oldExp, oldExpNeed);
-}
-
// --- Inventory / Equipment --------------------------------------------------
Inventory *getInventory()
diff --git a/src/being/playerinfo.h b/src/being/playerinfo.h
index 12cba8f18..2f8a2e1e9 100644
--- a/src/being/playerinfo.h
+++ b/src/being/playerinfo.h
@@ -142,24 +142,11 @@ namespace PlayerInfo
int getStatEffective(const AttributesT id) A_WARN_UNUSED;
/**
- * Changes the level of the given stat.
- */
- void setStatLevel(AttributesT id, int value, Notify notify = Notify_true);
-
- /**
* Returns the experience of the given stat.
*/
const std::pair<int, int> getStatExperience(const AttributesT id)
A_WARN_UNUSED;
- /**
- * Changes the experience of the given stat.
- */
- void setStatExperience(const AttributesT id,
- const int have,
- const int need,
- const Notify notify = Notify_true);
-
// --- Inventory / Equipment --------------------------------------------------
/**