diff options
Diffstat (limited to 'js/perso.js')
-rw-r--r-- | js/perso.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/js/perso.js b/js/perso.js index 44b82eb..7977a9d 100644 --- a/js/perso.js +++ b/js/perso.js @@ -26,7 +26,8 @@ function levelUp(xp){ data.maxHP+=2; } //need to send the xp to the server - sendRequest("craftmine.php", "op=updatePerso&hp="+data.hp+"&maxHP="+data.maxHP+"&xp="+data.xp+"&lv="+data.level+"&power="+data.power+"&bonusPower="+bonusPower, function(){ + sendRequest("craftmine.php", "op=updatePerso&hp="+data.hp+"&maxHP="+data.maxHP+"&xp="+data.xp+"&lv="+data.level + +"&power="+data.power+"&bonusPower="+bonusPower, function(){ displayPerso(data.hp,data.maxHP,data.maxHP,data.xp,data.level,data.power,data.bonusPower); }); } |