
- Removed login sql handle from the map server as it isn't used for anything. - Made the login sql handle on the char-sql server be used only when gm_read_method 1 is enabled. - Small fixes to npc_enable, added BL_NPC handling on status_get_sc. - Added a path_search check in map_random_dir, so that the random direction picked up doesn't goes through walls and all that. - Some changes to close-confine, status start will fail when the source is not found or it doesn't has sc-data. - pc_setoption no longer changes the character's class when mounting/dismounting, it only changes the view-class. - The peco-crash-fix from the char servers is still needed. This packet must be wrong! We likely need to sniff it. - Modified the char-txt server to modify the class of mounted characters to their non-mounted version. Added an upgrade_svn file to handle the class update on the sql tables. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@5902 54d463be-8e91-2dee-dedb-b68131a5f0ec
15 lines
822 B
SQL
15 lines
822 B
SQL
update `char` set `class`='7' where `class`='13';
|
|
update `char` set `class`='21' where `class`='14';
|
|
update `char` set `class`='4008' where `class`='4014';
|
|
update `char` set `class`='4015' where `class`='4022';
|
|
update `char` set `class`='4030' where `class`='4036';
|
|
update `char` set `class`='4037' where `class`='4044';
|
|
update `char` set `class`='4047' where `class`='4048';
|
|
update `guild_member` set `class`='7' where `class`='13';
|
|
update `guild_member` set `class`='21' where `class`='14';
|
|
update `guild_member` set `class`='4008' where `class`='4014';
|
|
update `guild_member` set `class`='4015' where `class`='4022';
|
|
update `guild_member` set `class`='4030' where `class`='4036';
|
|
update `guild_member` set `class`='4037' where `class`='4044';
|
|
update `guild_member` set `class`='4047' where `class`='4048';
|