[Bug Fix] Fix Mob::ShowStats() Proximity Display. (#1708)

This commit is contained in:
Kinglykrab 2021-11-10 19:48:02 -05:00 committed by GitHub
parent 6661672e2d
commit 32d606c667
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2210,8 +2210,8 @@ void Mob::ShowStats(Client* client)
fmt::format(
"Proximity X | Min: {} Max: {} Range: {}",
target->GetProximityMinX(),
target->GetProximityMinX(),
(target->GetProximityMinX() - target->GetProximityMinX())
target->GetProximityMaxX(),
(target->GetProximityMaxX() - target->GetProximityMinX())
).c_str()
);