Ver Fonte

Fixed bugreport:5386 riding dragons should now give the correct weight bonus. Special Thanks to Rytech and Vali

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@15868 54d463be-8e91-2dee-dedb-b68131a5f0ec
shennetsind há 13 anos atrás
pai
commit
2f9fd3a82e
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      src/map/status.c

+ 1 - 1
src/map/status.c

@@ -2799,7 +2799,7 @@ int status_calc_pc_(struct map_session_data* sd, bool first)
 	if(pc_isriding(sd) && pc_checkskill(sd,KN_RIDING)>0)
 		sd->max_weight += 10000;
 	else if( sd->sc.option&OPTION_DRAGON )
-		sd->max_weight += 200*pc_checkskill(sd,RK_DRAGONTRAINING);
+		sd->max_weight += 5000+2000*pc_checkskill(sd,RK_DRAGONTRAINING);
 	if(sc->data[SC_KNOWLEDGE])
 		sd->max_weight += sd->max_weight*sc->data[SC_KNOWLEDGE]->val1/10;
 	if((skill=pc_checkskill(sd,ALL_INCCARRY))>0)