diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-01-14 19:13:16 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-01-14 19:13:16 +0000 |
commit | a9dd834853966a4b7421cc643c30ad9996f6b039 (patch) | |
tree | 32983448f8498c02f29733bf3995b6752077c050 /src/map/map.h | |
parent | 05bff4bc98f620ae2f037028b72c11caddb6ac3f (diff) | |
download | hercules-a9dd834853966a4b7421cc643c30ad9996f6b039.tar.gz hercules-a9dd834853966a4b7421cc643c30ad9996f6b039.tar.bz2 hercules-a9dd834853966a4b7421cc643c30ad9996f6b039.tar.xz hercules-a9dd834853966a4b7421cc643c30ad9996f6b039.zip |
* Client packet corrections
- 0x01df is not 'gmreqnochatcount', but for requesting a player's account name via right-click menu (which currently can't be done)
- added /remove and /recall, aliases to /shift and /summon
- added /changemaptype, which alters a single cell's gat type
- gm kick will no longer exit the client (now it goes to the login screen)
- removed the quicksort invocation in /ignore code
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12076 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/map.h b/src/map/map.h index e73d82c87..0ae13ad95 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -1240,6 +1240,7 @@ struct map_data_other_server { int map_getcell(int,int,int,cell_chk); int map_getcellp(struct map_data*,int,int,cell_chk); void map_setcell(int m, int x, int y, cell_t cell, bool flag); +void map_setgatcell(int m, int x, int y, int gat); extern struct map_data map[]; extern int map_num; |