diff options
author | alexichi <alexbankai96@gmail.com> | 2016-05-07 12:08:36 +0200 |
---|---|---|
committer | alexichi <alexbankai96@gmail.com> | 2016-05-07 12:08:36 +0200 |
commit | 79cfbb29042fd60dfbc76a6810f75cce21d3ffe0 (patch) | |
tree | ed1425c2bf94fd7e2b068bfe64134e0689f83285 /js/dungeon.js | |
parent | ee02581b7fabd087fc4056bda739c88656fbca14 (diff) | |
download | candybox-79cfbb29042fd60dfbc76a6810f75cce21d3ffe0.tar.gz candybox-79cfbb29042fd60dfbc76a6810f75cce21d3ffe0.tar.bz2 candybox-79cfbb29042fd60dfbc76a6810f75cce21d3ffe0.tar.xz candybox-79cfbb29042fd60dfbc76a6810f75cce21d3ffe0.zip |
add the use of the life bottle
Diffstat (limited to 'js/dungeon.js')
-rw-r--r-- | js/dungeon.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/js/dungeon.js b/js/dungeon.js index 30808ff..982dcf6 100644 --- a/js/dungeon.js +++ b/js/dungeon.js @@ -55,6 +55,7 @@ function strike(ret,nb, f){ return; } else if(persoLife == 0){ + data.hp = 1; endBattle("mob",nb,f,ret); return; } @@ -100,7 +101,7 @@ function endBattle(v,nb, f, ret){ sendRequest("craftmine.php", "op=sendDungeonProgress&floor="+f+"&mob="+nb); } sendRequest("craftmine.php", "op=updatePerso&hp="+data.hp+"&xp="+data.xp+"&lv="+data.level, function(){ - displayPerso(data.hp,data.xp,data.level); + displayPerso(data.hp,parseInt(data.xp),data.level); }); } |