aboutsummaryrefslogtreecommitdiffstats
path: root/js/perso.js
diff options
context:
space:
mode:
authorpiernov <piernov@piernov.org>2016-05-10 21:37:27 +0200
committerpiernov <piernov@piernov.org>2016-05-10 21:37:27 +0200
commit204e838a7794bbce0d44fc35efb367abb052d02f (patch)
tree3426fdb07b631690d28619c570139244803e5763 /js/perso.js
parentf10c51f07a755d75a583f85316efbcd3bd1e4b6d (diff)
parent162b1de442bae3f02f14771eeb5f4f32868a97b3 (diff)
downloadcandybox-204e838a7794bbce0d44fc35efb367abb052d02f.tar.gz
candybox-204e838a7794bbce0d44fc35efb367abb052d02f.tar.bz2
candybox-204e838a7794bbce0d44fc35efb367abb052d02f.tar.xz
candybox-204e838a7794bbce0d44fc35efb367abb052d02f.zip
Merge branch 'alexichi' of /srv/git/candybox into alexichi
Diffstat (limited to 'js/perso.js')
-rw-r--r--js/perso.js3
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);
});
}