Skip to content

Commit

Permalink
SafariBowl v0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
milanvanzanten committed Jun 22, 2015
1 parent 31db401 commit 35db2bd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/client/logic/GameRenderer.java
Original file line number Diff line number Diff line change
Expand Up @@ -388,8 +388,8 @@ public void drawTooltip(Graphics2D g, Player player, int[] mXY) {
}

String[] stats = new String[]{
"BE: " + player.$GUIgetRemainingBe() + "/" + player.$GUIgetBe() + " ST: " + player.$GUIgetSt(),
"GE: " + player.$GUIgetGe() + " RS: " + player.$GUIgetRs()};
"MA: " + player.$GUIgetRemainingBe() + "/" + player.$GUIgetBe() + " ST: " + player.$GUIgetSt(),
"AG: " + player.$GUIgetGe() + " AV: " + player.$GUIgetRs()};
for(String string : stats) {
int w = metricsStats.stringWidth(string);
if(w > width) width = w;
Expand Down Expand Up @@ -945,10 +945,10 @@ public void drawChoosePlayers(Graphics2D g) {
g.setFont(textFont);
String[] strings = new String[]{
p.getPrice()+CURRENCY_SYMBOL,
"BE: "+p.$GUIgetBe(),
"MV: "+p.$GUIgetBe(),
"ST: "+p.$GUIgetSt(),
"GE: "+p.$GUIgetGe(),
"RS: "+p.$GUIgetRs(),
"AG: "+p.$GUIgetGe(),
"AV: "+p.$GUIgetRs(),
"Left: "+headcountLeft};
for (int j = 0; j < strings.length; j++) {
g.drawString(strings[j], i == 0 ? hD : 0, ResourceManager.IMAGE_HEIGHT + (description.length+1)*hD + j*hN + 3*hN);
Expand Down

0 comments on commit 35db2bd

Please sign in to comment.