diff options
author | Freeyorp <TheFreeYorp@NOSPAM.G.m.a.i.l.replace> | 2013-05-14 11:29:11 +1200 |
---|---|---|
committer | Freeyorp <TheFreeYorp@NOSPAM.G.m.a.i.l.replace> | 2013-05-14 11:29:11 +1200 |
commit | 73ed64203442f42a21f8f98d25f7c0fade9262dc (patch) | |
tree | 2e6a1d709fcb2a9bc47793cf8b452bd1fc1ab8c0 /src/map/pc.t.hpp | |
parent | 7db0a38b4ec702011d67b37160665499a8c837c1 (diff) | |
download | tmwa-73ed64203442f42a21f8f98d25f7c0fade9262dc.tar.gz tmwa-73ed64203442f42a21f8f98d25f7c0fade9262dc.tar.bz2 tmwa-73ed64203442f42a21f8f98d25f7c0fade9262dc.tar.xz tmwa-73ed64203442f42a21f8f98d25f7c0fade9262dc.zip |
Add SHAREXP distinction, create UNKNOWNXP default
Previously, KILLXP was being set as the catchall, which caused false
positives for XP sharing.
Update documentation accordingly.
log version incremented to 4.
Diffstat (limited to 'src/map/pc.t.hpp')
-rw-r--r-- | src/map/pc.t.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/pc.t.hpp b/src/map/pc.t.hpp index 26e4d94..feffd89 100644 --- a/src/map/pc.t.hpp +++ b/src/map/pc.t.hpp @@ -8,7 +8,9 @@ enum class PC_GAINEXP_REASON KILLING = 0, HEALING = 1, SCRIPT = 2, + SHARING = 3, + UNKNOWN, COUNT, }; |