Skip to content

Commit

Permalink
Update to v0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Lonami committed Jul 19, 2017
1 parent ea2ddb8 commit 8199924
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ android {
minSdkVersion 8
targetSdkVersion 25

versionCode 610
versionName "0.6.1"
versionCode 700
versionName "0.7"
}
}

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ allprojects {
apply plugin: "eclipse"
apply plugin: "idea"

version = '0.6.1'
version = '0.7'
ext {
appName = "1010! Klooni"
gdxVersion = '1.9.5'
Expand Down
1 change: 0 additions & 1 deletion core/src/io/github/lonamiwebs/klooni/Effect.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ public String getDisplay() {
//region Static methods

public static Effect[] getEffects() {
// TODO Load effects
return new Effect[] {
new Effect("vanish"),
new Effect("waterdrop"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,8 @@ public MoneyBuyBand(final Klooni game) {
confirmButton.addListener(new ChangeListener() {
@Override
public void changed(ChangeEvent event, Actor actor) {
if (toBuy != null) {
if (toBuy != null)
toBuy.performBuy();
}
showCurrentMoney();
hideBuyButtons();
}
Expand Down

0 comments on commit 8199924

Please sign in to comment.