1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-22 22:13:35 +02:00

Nullkiller -> Standard-AI

This commit is contained in:
Michael 2023-04-11 20:52:11 +02:00 committed by GitHub
parent d9a2621231
commit 471aec9894
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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