Skip to content

Commit 87544f4

Browse files
committed
Resetted the maxhealth back to 100.
1 parent 83fd61a commit 87544f4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

android/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="ga.gussio.ld38.earthinvaders"
4-
android:versionCode="1"
5-
android:versionName="1.0" >
4+
android:versionCode="3"
5+
android:versionName="Beta 0.1.2.2" >
66

77
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="24" />
88
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

core/src/ga/gussio/ld38/earthinvaders/screen/GameScreen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class GameScreen extends Screen implements InputListener {
3737
public static CopyOnWriteArrayList<Entity> entities = new CopyOnWriteArrayList<Entity>();
3838
private HashMap<Integer, Integer> pointers = new HashMap<Integer, Integer>();
3939

40-
public static float maxHealth = 1;
40+
public static float maxHealth = 100;
4141
public static float health = maxHealth;
4242
private static int dmgAnimation = 0;
4343

0 commit comments

Comments
 (0)