diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-02-01 21:04:46 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-02-01 21:04:46 +0000 |
commit | 5de3852d0e203ad08e4bdd748a49f8dba2e028c2 (patch) | |
tree | e4a1fce223b40e891fc5395c749d47b4de1fcd41 /src/map/itemdb.h | |
parent | ca0aa0f7e55896730f6470a7dec81e6293b305ff (diff) | |
download | hercules-5de3852d0e203ad08e4bdd748a49f8dba2e028c2.tar.gz hercules-5de3852d0e203ad08e4bdd748a49f8dba2e028c2.tar.bz2 hercules-5de3852d0e203ad08e4bdd748a49f8dba2e028c2.tar.xz hercules-5de3852d0e203ad08e4bdd748a49f8dba2e028c2.zip |
- Item search is now a bit smarter. When no item is found with the same 'aegis name', then the 'normal' name is used instead.
- Updated the @/# commands that take an item name so that you can use quotes when specifying item names with spaces in them. For example, @item "poring card" 1 will work now. Note that only the commands that work on ONE item have been updated, those that do an item list need to be updated as well.
- Removed some garbage from the item_data structure.
- Improved a bit the description of the mvp item get time config settings.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9767 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/itemdb.h')
-rw-r--r-- | src/map/itemdb.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/map/itemdb.h b/src/map/itemdb.h index 85a0cdb21..0b9e2a466 100644 --- a/src/map/itemdb.h +++ b/src/map/itemdb.h @@ -36,7 +36,6 @@ enum { struct item_data { int nameid; char name[ITEM_NAME_LENGTH],jname[ITEM_NAME_LENGTH]; - char prefix[NAME_LENGTH],suffix[NAME_LENGTH]; //Do not add stuff between value_buy and wlv (see how getiteminfo works) int value_buy; int value_sell; @@ -68,7 +67,6 @@ struct item_data { unsigned value_notdc : 1; unsigned value_notoc : 1; short no_equip; - unsigned no_use : 1; unsigned no_refine : 1; // [celest] unsigned delay_consume : 1; // Signifies items that are not consumed inmediately upon double-click [Skotlex] unsigned trade_restriction : 7; //Item restrictions mask [Skotlex] |