Explorar el Código

Version number

tags/v0.2.8
Fen Dweller hace 8 años
padre
commit
4a7457a57b
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. +1
    -1
      feast.html
  2. +1
    -1
      feast.js

+ 1
- 1
feast.html Ver fichero

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


+ 1
- 1
feast.js Ver fichero

@@ -257,7 +257,7 @@ function updateDisplay() {
document.getElementById("stat-str").innerHTML = "Str: " + player.str; document.getElementById("stat-str").innerHTML = "Str: " + player.str;
document.getElementById("stat-dex").innerHTML = "Dex: " + player.dex; document.getElementById("stat-dex").innerHTML = "Dex: " + player.dex;
document.getElementById("stat-con").innerHTML = "Con: " + player.con; 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-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-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; document.getElementById("stat-womb").innerHTML = "Womb: " + round(player.womb.fullness(),0) + "/" + player.womb.capacity;


Cargando…
Cancelar
Guardar