diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-04-06 17:08:19 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-04-06 17:08:19 -0600 |
commit | e4b494e5b6540c88c597c67df114c0328ea9d7b7 (patch) | |
tree | 6e08c43011662e6f83d1eabcefc949d6e680616f /src/map/pc.h | |
parent | 36a2e1945e4c27e438a1bce6e286691a60ed7adf (diff) | |
download | tmwa-e4b494e5b6540c88c597c67df114c0328ea9d7b7.tar.gz tmwa-e4b494e5b6540c88c597c67df114c0328ea9d7b7.tar.bz2 tmwa-e4b494e5b6540c88c597c67df114c0328ea9d7b7.tar.xz tmwa-e4b494e5b6540c88c597c67df114c0328ea9d7b7.zip |
Remove some stuff from direction change packets
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index 0c4141a..8ecbeb3 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -13,7 +13,7 @@ //#define pc_setstand(sd) ((sd)->state.dead_sit = 0) #define pc_isdead(sd) ((sd)->state.dead_sit == 1) #define pc_issit(sd) ((sd)->state.dead_sit == 2) -#define pc_setdir(sd,b,h) ((sd)->dir = (b) ,(sd)->head_dir = (h) ) +#define pc_setdir(sd,b) ((sd)->dir = (b)) #define pc_setchatid(sd,n) ((sd)->chatID = n) #define pc_ishiding(sd) ((sd)->status.option&0x4006) #define pc_iscarton(sd) ((sd)->status.option&CART_MASK) |