From 1652e7a976ea269ce8400d3e7dc99176e2cd49dd Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 28 Aug 2023 19:44:56 -0500 Subject: [PATCH] [Hotfix] Fix to zoning logging exception --- zone/zoning.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zone/zoning.cpp b/zone/zoning.cpp index 38e4bb1d5..98c9ba4e4 100644 --- a/zone/zoning.cpp +++ b/zone/zoning.cpp @@ -56,7 +56,7 @@ void Client::Handle_OP_ZoneChange(const EQApplicationPacket *app) { auto* zc = (ZoneChange_Struct*)app->pBuffer; LogZoning( - "Client [{}] zoning to [{}] ({}) instance_id [{}] x [{}] y [{}] z [{}] zone_reason [{}] success [{}] zone_mode [{}] ({})", + "Client [{}] char_name [{}] zoning to [{}] ({}) instance_id [{}] x [{}] y [{}] z [{}] zone_reason [{}] success [{}] zone_mode [{}] ({})", GetCleanName(), zc->char_name, ZoneName(zc->zoneID), @@ -68,7 +68,7 @@ void Client::Handle_OP_ZoneChange(const EQApplicationPacket *app) { zc->zone_reason, zc->success, GetZoneModeString(zone_mode), - zone_mode + int(zone_mode) ); uint16 target_zone_id = 0;