This commit is contained in:
oc 2017-12-05 22:29:28 +08:00
parent 31e5f5d81a
commit 29b4789969
2 changed files with 1 additions and 2 deletions

View File

@ -1262,7 +1262,6 @@ core.prototype.moveHero = function (direction) {
} }
core.prototype.moveOneStep = function() { core.prototype.moveOneStep = function() {
core.status.hero.steps++;
// 中毒状态 // 中毒状态
if (core.hasFlag('poison')) { if (core.hasFlag('poison')) {
core.status.hero.hp -= core.values.poisonDamage; core.status.hero.hp -= core.values.poisonDamage;

View File

@ -344,5 +344,5 @@ main.dom.normalLevel.onclick = function () {
} }
main.dom.hardLevel.onclick = function () { main.dom.hardLevel.onclick = function () {
core.events.startGame('Gard'); core.events.startGame('Hard');
} }