Преглед изворни кода

Merge pull request #1944 from Laserlicht/patch-1

Nullkiller -> Standard-AI
Ivan Savenko пре 2 година
родитељ
комит
05550158ee
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      android/vcmi-app/src/main/java/eu/vcmi/vcmi/Config.java

+ 2 - 2
android/vcmi-app/src/main/java/eu/vcmi/vcmi/Config.java

@@ -89,7 +89,7 @@ public class Config
         config.mVolumeSound = loadEntry(general, "sound", DEFAULT_SOUND_VALUE);
         config.mVolumeMusic = loadEntry(general, "music", DEFAULT_MUSIC_VALUE);
         config.mSwipeEnabled = loadEntry(general, "swipe", true);
-        config.adventureAi = loadEntry(server, "playerAI", "VCAI");
+        config.adventureAi = loadEntry(server, "playerAI", "Nullkiller");
         config.mUseRelativePointer = loadEntry(general, "userRelativePointer", false);
         config.mPointerSpeedMultiplier = loadDouble(general, "relativePointerSpeedMultiplier", 1.0);
 
@@ -140,7 +140,7 @@ public class Config
 
     public String getAdventureAi()
     {
-        return this.adventureAi == null ? "VCAI" : this.adventureAi;
+        return this.adventureAi == null ? "Nullkiller" : this.adventureAi;
     }
 
     public void setPointerSpeedMultiplier(float speedMultiplier)