[Bots] Fix typo in positioning (#4659)

This commit is contained in:
nytmyr 2025-02-08 00:12:03 -06:00 committed by GitHub
parent 7ad63575c7
commit 95559b2e17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11901,7 +11901,7 @@ bool Bot::PlotBotPositionAroundTarget(Mob* target, float& x_dest, float& y_dest,
temp_x = tar_x + zone->random.Real(-max_distance, max_distance);
temp_y = tar_y + zone->random.Real(-max_distance, max_distance);
temp_z_Position.x = temp_z;
temp_z_Position.x = temp_x;
temp_z_Position.y = temp_y;
temp_z_Position.z = temp_z;
best_z = GetFixedZ(temp_z_Position);