summaryrefslogtreecommitdiff
path: root/src/map/map.h
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-09-15 21:49:21 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-09-15 21:49:21 +0000
commitfd6ff31e591191e8f6bbf2dee4bfe9001cc14395 (patch)
tree43c82e038c108ff8d6fba03f5b939d9010b6cbcd /src/map/map.h
parent1b0780d6839a63bfaf4ff5b0287aa83605d817d9 (diff)
downloadhercules-fd6ff31e591191e8f6bbf2dee4bfe9001cc14395.tar.gz
hercules-fd6ff31e591191e8f6bbf2dee4bfe9001cc14395.tar.bz2
hercules-fd6ff31e591191e8f6bbf2dee4bfe9001cc14395.tar.xz
hercules-fd6ff31e591191e8f6bbf2dee4bfe9001cc14395.zip
Getting some (mostly atcommand) code cleaning out of the way...
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11222 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r--src/map/map.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/map.h b/src/map/map.h
index 5f3672e2a..15a0ece81 100644
--- a/src/map/map.h
+++ b/src/map/map.h
@@ -595,7 +595,7 @@ struct map_session_data {
struct mmo_charstatus status;
struct registry save_reg;
- struct item_data *inventory_data[MAX_INVENTORY];
+ struct item_data* inventory_data[MAX_INVENTORY]; // direct pointers to itemdb entries (faster than doing item_id lookups)
short equip_index[11];
unsigned int weight,max_weight;
int cart_weight,cart_num;
@@ -1037,7 +1037,7 @@ enum {
struct map_data {
char name[MAP_NAME_LENGTH];
unsigned short index; //Index is the map index used by the mapindex* functions.
- unsigned char *gat; // If this is NULL‚ the map is not on this map-server
+ unsigned char *gat; // If this is NULL, the map is not on this map-server
unsigned char *cell; //Contains temporary cell data that is set/unset on tiles.
#ifdef CELL_NOSTACK
unsigned char *cell_bl; //Holds amount of bls in any given cell.
@@ -1117,7 +1117,7 @@ struct map_data {
struct map_data_other_server {
char name[MAP_NAME_LENGTH];
unsigned short index; //Index is the map index used by the mapindex* functions.
- unsigned char *gat; // If this is NULL‚ the map is not on this map-server
+ unsigned char *gat; // If this is NULL, the map is not on this map-server
uint32 ip;
uint16 port;
};