Parcourir la source

Fixed flooding showing too few prey

tags/v0.7.0^2
Fen Dweller il y a 7 ans
Parent
révision
302db782d2
2 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. +1
    -1
      recursive-desc.js
  2. +2
    -0
      units.js

+ 1
- 1
recursive-desc.js Voir le fichier

@@ -874,7 +874,7 @@ function defaultFlood(container, macro, verbose) {
if (container.count == 0) {
return "Your gooey body melts and floods outward..but doesn't catch anything.";
} else {
return "Your gooey body melts and floods outward, burying " + container.describe(verbose) + " in your thick, slimy self. You slowly reform, grinning as you feel the " + numberRough(container.count, "of") + " prey sloshing about within.";
return "Your gooey body melts and floods outward, burying " + container.describe(verbose) + " in your thick, slimy self. You slowly reform, grinning as you feel " + numberRough(get_living_prey(container.sum()), "of") + " prey sloshing about within.";
}
}



+ 2
- 0
units.js Voir le fichier

@@ -33,6 +33,8 @@ function numberRough(value,suffix="") {
case 2: return prefix + "millions " + suffix;
case 3: return prefix + "billions " + suffix;
case 4: return prefix + "trillions " + suffix;
case 5: return prefix + "quadrillions " + suffix;
case 6: return prefix + "quintillions " + suffix;
default: return "uncountably many";
}
}


Chargement…
Annuler
Enregistrer