Sfoglia il codice sorgente

Version number

tags/v0.2.8
Fen Dweller 7 anni fa
parent
commit
4a7457a57b
2 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +1
    -1
      feast.html
  2. +1
    -1
      feast.js

+ 1
- 1
feast.html Vedi File

@@ -28,7 +28,7 @@
<div id="game-and-stats">
<div id="log">
<div>
Welcome to Feast v0.2.4
Welcome to Feast v0.2.5
</div>
<div>
&nbsp;


+ 1
- 1
feast.js Vedi File

@@ -257,7 +257,7 @@ function updateDisplay() {
document.getElementById("stat-str").innerHTML = "Str: " + player.str;
document.getElementById("stat-dex").innerHTML = "Dex: " + player.dex;
document.getElementById("stat-con").innerHTML = "Con: " + player.con;
document.getElementById("stat-stomach").innerHTML = "Stomach: " + round(player.stomach.fullness(),0) + "/" + player.stomach.capacity
document.getElementById("stat-stomach").innerHTML = "Stomach: " + round(player.stomach.fullness(),0) + "/" + player.stomach.capacity;
document.getElementById("stat-bowels").innerHTML = "Bowels: " + round(player.bowels.fullness(),0) + "/" + player.bowels.capacity;
document.getElementById("stat-balls").innerHTML = "Balls: " + round(player.balls.fullness(),0) + "/" + player.balls.capacity;
document.getElementById("stat-womb").innerHTML = "Womb: " + round(player.womb.fullness(),0) + "/" + player.womb.capacity;


Loading…
Annulla
Salva