diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-02-20 16:21:37 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-02-20 16:21:37 +0000 |
commit | b5bcd3c54bfe30e7602a92d4b39ee15973f3c46f (patch) | |
tree | fb12351bc05dea4dea9158a427724b8b89a467c0 /src/map/pc.h | |
parent | 85db367d556b31b432b2e3b2c909cca14d6248f2 (diff) | |
download | hercules-b5bcd3c54bfe30e7602a92d4b39ee15973f3c46f.tar.gz hercules-b5bcd3c54bfe30e7602a92d4b39ee15973f3c46f.tar.bz2 hercules-b5bcd3c54bfe30e7602a92d4b39ee15973f3c46f.tar.xz hercules-b5bcd3c54bfe30e7602a92d4b39ee15973f3c46f.zip |
Changed pc_can_give_items() to use standard boolean logic instead of the inverted 1/0 one (bugreport:396)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12220 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index e9f300d9c..e3eb9afdb 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -140,7 +140,7 @@ extern int duel_count; int pc_class2idx(int class_); int pc_isGM(struct map_session_data *sd); int pc_getrefinebonus(int lv,int type); -int pc_can_give_items(int level); //[Lupus] +bool pc_can_give_items(int level); int pc_setrestartvalue(struct map_session_data *sd,int type); int pc_makesavestatus(struct map_session_data *); |