From a6b20c5c053a3045d8e885903a861dd304f943e6 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 17 Sep 2024 13:08:52 -0400 Subject: [PATCH] v2.5.2: fixed unintentional flying rat debug code and bumped version --- build.gradle | 2 +- .../shatteredpixel/shatteredpixeldungeon/actors/mobs/Rat.java | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index b375cf815..df59ff45e 100644 --- a/build.gradle +++ b/build.gradle @@ -20,7 +20,7 @@ allprojects { appName = 'Shattered Pixel Dungeon' appPackageName = 'com.shatteredpixel.shatteredpixeldungeon' - appVersionCode = 796 + appVersionCode = 797 appVersionName = '2.5.2' appJavaCompatibility = JavaVersion.VERSION_1_8 diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Rat.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Rat.java index 8aabe0489..e093f9fa2 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Rat.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Rat.java @@ -36,8 +36,6 @@ public class Rat extends Mob { HP = HT = 8; defenseSkill = 2; - flying = true; - maxLvl = 5; }