diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2013-10-13 14:07:25 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-10-15 19:46:00 -0700 |
commit | 60d9e17f3719eca2eb4531f9f01976b1e26c411b (patch) | |
tree | a0e5ba308526a6adb906c3bae1de239ccf8acafb /src/map/pc.cpp | |
parent | 962552f17274dc066d17ab3d6c9495d77d681314 (diff) | |
download | tmwa-60d9e17f3719eca2eb4531f9f01976b1e26c411b.tar.gz tmwa-60d9e17f3719eca2eb4531f9f01976b1e26c411b.tar.bz2 tmwa-60d9e17f3719eca2eb4531f9f01976b1e26c411b.tar.xz tmwa-60d9e17f3719eca2eb4531f9f01976b1e26c411b.zip |
Use config for internal server userid/passwd instead of accounts.txt
This requires updated config files in the data repo.
Diffstat (limited to 'src/map/pc.cpp')
-rw-r--r-- | src/map/pc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/pc.cpp b/src/map/pc.cpp index 8750910..4600aeb 100644 --- a/src/map/pc.cpp +++ b/src/map/pc.cpp @@ -592,7 +592,7 @@ int pc_isequip(dumb_ptr<map_session_data> sd, int n) if (item == NULL) return 0; - if (item->sex != SEX::SERVER && sd->status.sex != item->sex) + if (item->sex != SEX::NEUTRAL && sd->status.sex != item->sex) return 0; if (item->elv > 0 && sd->status.base_level < item->elv) return 0; @@ -2228,7 +2228,7 @@ int pc_isUseitem(dumb_ptr<map_session_data> sd, int n) if (itemdb_type(nameid) != ItemType::USE) return 0; - if (item->sex != SEX::SERVER && sd->status.sex != item->sex) + if (item->sex != SEX::NEUTRAL && sd->status.sex != item->sex) return 0; if (item->elv > 0 && sd->status.base_level < item->elv) return 0; |