aboutsummaryrefslogtreecommitdiffstats
path: root/js/dungeon.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/dungeon.js')
-rw-r--r--js/dungeon.js3
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);
});
}