diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-06-24 18:52:00 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-06-24 19:07:21 -0700 |
commit | b353ae37eb6d374aec4127f1849a5dce81f812b5 (patch) | |
tree | 8bd11630cd97292d0a1def17cff36517b061a641 /src/map/npc.cpp | |
parent | 7e71c1db0d46d7ff4dd53af9356e1a60814dd509 (diff) | |
download | tmwa-b353ae37eb6d374aec4127f1849a5dce81f812b5.tar.gz tmwa-b353ae37eb6d374aec4127f1849a5dce81f812b5.tar.bz2 tmwa-b353ae37eb6d374aec4127f1849a5dce81f812b5.tar.xz tmwa-b353ae37eb6d374aec4127f1849a5dce81f812b5.zip |
No one is .neutral() here (except IPv4 addresses)
Diffstat (limited to 'src/map/npc.cpp')
-rw-r--r-- | src/map/npc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/npc.cpp b/src/map/npc.cpp index 7b31729..3232e4d 100644 --- a/src/map/npc.cpp +++ b/src/map/npc.cpp @@ -849,7 +849,7 @@ int npc_buylist(dumb_ptr<map_session_data> sd, if ((item_data = itemdb_exists(item_l_id)) != NULL) { int amount = item_l_count; - struct item item_tmp {}; + Item item_tmp {}; item_tmp.nameid = item_data->nameid; |