From 6666609abcfa09f09a7b24c2b7f23fe83acc6585 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Fri, 17 May 2013 14:12:06 -0300 Subject: Fixed Look_Base not refreshing skill tree special thanks to Beret~! Signed-off-by: shennetsind --- src/common/mapindex.c | 2 +- src/map/pc.c | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/common/mapindex.c b/src/common/mapindex.c index b693fe12d..83de21b2b 100644 --- a/src/common/mapindex.c +++ b/src/common/mapindex.c @@ -148,7 +148,7 @@ void mapindex_init(void) { exit(EXIT_FAILURE); //Server can't really run without this file. } memset (&indexes, 0, sizeof (indexes)); - mapindex_db = strdb_alloc(DB_OPT_RELEASE_KEY, MAP_NAME_LENGTH); + mapindex_db = strdb_alloc(DB_OPT_DUP_KEY, MAP_NAME_LENGTH); while(fgets(line, sizeof(line), fp)) { if(line[0] == '/' && line[1] == '/') continue; diff --git a/src/map/pc.c b/src/map/pc.c index 0f221f298..644a296cf 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -7542,7 +7542,13 @@ int pc_changelook(struct map_session_data *sd,int type,int val) switch(type){ case LOOK_BASE: - sd->vd.class_ = val; + status_set_viewdata(&sd->bl, val); + clif->changelook(&sd->bl,LOOK_BASE,sd->vd.class_); + clif->changelook(&sd->bl,LOOK_WEAPON,sd->status.weapon); + if (sd->vd.cloth_color) + clif->changelook(&sd->bl,LOOK_CLOTHES_COLOR,sd->vd.cloth_color); + clif->skillinfoblock(sd); + return 0; break; case LOOK_HAIR: //Use the battle_config limits! [Skotlex] val = cap_value(val, MIN_HAIR_STYLE, MAX_HAIR_STYLE); -- cgit v1.2.3-70-g09d2