Skip to content

Commit

Permalink
Resetted the maxhealth back to 100.
Browse files Browse the repository at this point in the history
  • Loading branch information
MrGussio committed Jun 19, 2017
1 parent 83fd61a commit 87544f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ga.gussio.ld38.earthinvaders"
android:versionCode="1"
android:versionName="1.0" >
android:versionCode="3"
android:versionName="Beta 0.1.2.2" >

<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="24" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class GameScreen extends Screen implements InputListener {
public static CopyOnWriteArrayList<Entity> entities = new CopyOnWriteArrayList<Entity>();
private HashMap<Integer, Integer> pointers = new HashMap<Integer, Integer>();

public static float maxHealth = 1;
public static float maxHealth = 100;
public static float health = maxHealth;
private static int dmgAnimation = 0;

Expand Down

0 comments on commit 87544f4

Please sign in to comment.