Applied fix by Ai4rei to reintroduce mapName within charinfo packet when PACKETVER >= 20100803. Follow-up to r14432. (bugreport:4413)
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@14440 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
03bc90dab7
commit
625a3870ac
@ -1,6 +1,7 @@
|
||||
Date Added
|
||||
|
||||
2010/11/02
|
||||
* Applied fix by Ai4rei to reintroduce mapName within charinfo packet when PACKETVER >= 20100803. Follow-up to r14432. (bugreport:4413) [Paradox924X]
|
||||
* Updated script doc to appropriately describe the effects of close/close2 when used without a window on screen. (bugreport:898) [Paradox924X]
|
||||
* Applied patch by xazax to clean up various bits of code across mapserver code. (bugreport:4512) [Paradox924X]
|
||||
2010/11/01
|
||||
|
@ -1736,7 +1736,7 @@ int mmo_char_tobuf(uint8* buffer, struct mmo_charstatus* p)
|
||||
WBUFW(buf,106) = ( p->rename > 0 ) ? 0 : 1;
|
||||
offset += 2;
|
||||
#endif
|
||||
#if PACKETVER >= 20100720 && PACKETVER <= 20100727
|
||||
#if (PACKETVER >= 20100720 && PACKETVER <= 20100727) || PACKETVER >= 20100803
|
||||
mapindex_getmapname_ext(mapindex_id2name(p->last_point.map), (char*)WBUFP(buf,108));
|
||||
offset += 16;
|
||||
#endif
|
||||
|
@ -1596,7 +1596,7 @@ int mmo_char_tobuf(uint8* buffer, struct mmo_charstatus* p)
|
||||
WBUFW(buf,106) = ( p->rename > 0 ) ? 0 : 1;
|
||||
offset+=2;
|
||||
#endif
|
||||
#if PACKETVER >= 20100720 && PACKETVER <= 20100727
|
||||
#if (PACKETVER >= 20100720 && PACKETVER <= 20100727) || PACKETVER >= 20100803
|
||||
mapindex_getmapname_ext(mapindex_id2name(p->last_point.map), (char*)WBUFP(buf,108));
|
||||
offset += 16;
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user