mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-05 19:46:35 +00:00
[Bots] Adjust Bot Movement Speed (#3615)
# Notes - Bots were having a hard time keeping up with players. - Part of this was due to using walk until a certain distance. - Another part was their ctor only having `0.7f` run speed versus our Mob sanity check of `1.25f`. - We check movement stuff now before idle checks so bots are more likely to start moving earlier.
This commit is contained in:
@@ -39,7 +39,6 @@
|
||||
|
||||
constexpr uint32 BOT_FOLLOW_DISTANCE_DEFAULT = 184; // as DSq value (~13.565 units)
|
||||
constexpr uint32 BOT_FOLLOW_DISTANCE_DEFAULT_MAX = 2500; // as DSq value (50 units)
|
||||
constexpr uint32 BOT_FOLLOW_DISTANCE_WALK = 1000; // as DSq value (~31.623 units)
|
||||
|
||||
constexpr uint32 BOT_KEEP_ALIVE_INTERVAL = 5000; // 5 seconds
|
||||
|
||||
|
||||
Reference in New Issue
Block a user