v0.4.3a: manifest commit

This commit is contained in:
Evan Debenham 2016-10-24 19:34:00 -04:00
parent 4f864db014
commit 851060251e
3 changed files with 5 additions and 4 deletions

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.shatteredpixel.shatteredpixeldungeon"
android:versionCode="139"
android:versionName="0.4.3"
android:versionCode="144"
android:versionName="0.4.3a"
android:installLocation="auto">
<uses-permission android:name="android.permission.VIBRATE"/>

View File

@ -208,6 +208,7 @@ public class Blob extends Actor {
}
public void clear( int cell ) {
if (volume == 0) return;
volume -= cur[cell];
cur[cell] = 0;
}

View File

@ -134,8 +134,8 @@ public class WelcomeScene extends PixelScene {
//TODO: change the messages here in accordance with the type of patch.
message = Messages.get(this, "patch_intro");
message += "\n\n" + Messages.get(this, "patch_bugfixes");
//message += "\n" + Messages.get(this, "patch_translations");
//message += "\n" + Messages.get(this, "patch_balance");
message += "\n" + Messages.get(this, "patch_translations");
message += "\n" + Messages.get(this, "patch_balance");
}
} else {