Remove some useless comments

This commit is contained in:
friarsol
2022-07-28 23:15:25 -04:00
parent 2a12f830aa
commit fb8f1fdeb9

View File

@@ -26,7 +26,6 @@ public class InnScene extends UIScene {
} }
public void potionOfFalseLife() { public void potionOfFalseLife() {
// TODO Pay a bit of money to gain a temporary +2 HP.
Current.player().potionOfFalseLife(); Current.player().potionOfFalseLife();
} }
@@ -47,7 +46,6 @@ public class InnScene extends UIScene {
ui.onButtonPress("tempHitPointCost", new Runnable() { ui.onButtonPress("tempHitPointCost", new Runnable() {
@Override @Override
public void run() { public void run() {
// Pay 200 gp to gain temporary 2 hp.
InnScene.this.potionOfFalseLife(); InnScene.this.potionOfFalseLife();
} }
}); });