Merging Source v1.7.2: UI changes

This commit is contained in:
Evan Debenham
2014-10-18 21:30:38 -04:00
parent 9f9e117c95
commit 735af276c8
7 changed files with 347 additions and 206 deletions
@@ -76,7 +76,7 @@ public class DangerIndicator extends Tag {
int v = Dungeon.hero.visibleEnemies();
if (v != lastNumber) {
lastNumber = v;
if (visible = (lastNumber > 0)) {
if (visible = lastNumber > 0) {
number.text( Integer.toString( lastNumber ) );
number.measure();
placeNumber();