summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
author(no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-02-01 10:46:03 +0000
committer(no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-02-01 10:46:03 +0000
commitefeb89f34eccad6613e97c711fd5ef561ed0e4e3 (patch)
treeb08adc5accd4b7b9ed1871c4582d0707ac74798a /src/map/pc.c
parentdaf78c92543e34b9a2db242fab207f4ea0c0f7d1 (diff)
downloadhercules-efeb89f34eccad6613e97c711fd5ef561ed0e4e3.tar.gz
hercules-efeb89f34eccad6613e97c711fd5ef561ed0e4e3.tar.bz2
hercules-efeb89f34eccad6613e97c711fd5ef561ed0e4e3.tar.xz
hercules-efeb89f34eccad6613e97c711fd5ef561ed0e4e3.zip
* Added Karma and Manner to const.txt
* Delete players' ID from id_db when kicking everyone from the map-server due to char disconnection -- Fixes an odd crash with lazy mob AI git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1017 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 6026da033..e98df2a02 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -4748,6 +4748,12 @@ int pc_readparam(struct map_session_data *sd,int type)
case SP_LUK:
val= sd->status.luk;
break;
+ case SP_KARMA: // celest
+ val = sd->status.karma;
+ break;
+ case SP_MANNER:
+ val = sd->status.manner;
+ break;
case SP_FAME:
val= sd->fame;
break;
@@ -4877,6 +4883,12 @@ int pc_setparam(struct map_session_data *sd,int type,int val)
case SP_LUK:
sd->status.luk = val;
break;
+ case SP_KARMA:
+ sd->status.karma = val;
+ break;
+ case SP_MANNER:
+ sd->status.manner = val;
+ break;
case SP_FAME:
sd->fame = val;
break;