Browse Source

- Fixed the setting hom_setting not being read at all.
- Minor cleanups


git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9525 54d463be-8e91-2dee-dedb-b68131a5f0ec

skotlex 18 years ago
parent
commit
b19f78a17c
3 changed files with 3 additions and 7 deletions
  1. 1 1
      src/map/battle.c
  2. 0 1
      src/map/pc.c
  3. 2 5
      src/map/script.c

+ 1 - 1
src/map/battle.c

@@ -3760,7 +3760,7 @@ static const struct battle_data_short {
 
 	{ "debuff_on_logout",                  &battle_config.debuff_on_logout},
 	{ "monster_ai",                        &battle_config.mob_ai},
-	{ "monster_ai",                        &battle_config.hom_setting},
+	{ "hom_setting",                        &battle_config.hom_setting},
 	{ "dynamic_mobs",                      &battle_config.dynamic_mobs},
 	{ "mob_remove_damaged",                &battle_config.mob_remove_damaged},
 	{ "show_hp_sp_drain",                  &battle_config.show_hp_sp_drain}, // [Skotlex]

+ 0 - 1
src/map/pc.c

@@ -5770,7 +5770,6 @@ int pc_setcart(struct map_session_data *sd,int type)
 			pc_setoption(sd,option);
 			clif_cartlist(sd);
 			clif_updatestatus(sd,SP_CARTINFO);
-			clif_status_change(&sd->bl,SI_INCREASEAGI,0); //0x0c is 12, Increase Agi??
 		}
 		else{
 			pc_setoption(sd,option);

+ 2 - 5
src/map/script.c

@@ -7452,11 +7452,8 @@ int buildin_getmapguildusers(struct script_state *st) {
 	if (g){
 		for(i = 0; i < g->max_member; i++)
 		{
-			if (g->member[i].sd )
-			{
-				if(g->member[i].sd->bl.m == m)
-					c++;
-			}
+			if (g->member[i].sd && g->member[i].sd->bl.m == m)
+				c++;
 		}
 	}