diff --git a/customs.js b/customs.js index b5b399f..f540837 100644 --- a/customs.js +++ b/customs.js @@ -1973,7 +1973,7 @@ function poojawaPlayerCaughtOral(player) { function poojawaPlayerCaughtTail(player) { return { name: "Rub her tails", - desc: "Why not just give them a fewpets?", + desc: "Why not just give them a few pets?", attack: function(poojawa) { poojawa.flags.tail += 1; return ["You reach out at one of Poojawa's swaying tails, stroking along soft fur and sneaking your hand into the slackeend maw. So soft..."]; diff --git a/feast.css b/feast.css index d66f619..22f7938 100644 --- a/feast.css +++ b/feast.css @@ -6,6 +6,15 @@ body { font-family: Arial; } +hr { + display: block; + height: 1px; + border: 0; + border-top: 1px solid #ccc; + margin: 1em 0; + padding: 0; +} + a { color: #7777FF; text-decoration: none; diff --git a/feast.js b/feast.js index f7a2f17..8ac726e 100644 --- a/feast.js +++ b/feast.js @@ -421,6 +421,7 @@ function update(lines=[]) { log.appendChild(div); } + log.scrollTop = log.scrollHeight; updateDisplay(); } @@ -501,6 +502,7 @@ function startCombat(opponent) { } function attackClicked(index) { + clearScreen(); update(playerAttacks[index].attack(currentFoe).concat([newline])); if (currentFoe.health <= 0) {