From fd7a31108af2565e449050ab877721bf93f96a56 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Wed, 10 Aug 2022 09:26:06 -0400 Subject: [PATCH] Core/Misc: Fixed ResetFailedReason enum values for 9.2.5 client Port From (https://github.com/TrinityCore/TrinityCore/commit/7b1df181404d15a8027d20df118490a8bd3932a4) --- Source/Framework/Constants/PlayerConst.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Framework/Constants/PlayerConst.cs b/Source/Framework/Constants/PlayerConst.cs index 826068872..d59f2d5bc 100644 --- a/Source/Framework/Constants/PlayerConst.cs +++ b/Source/Framework/Constants/PlayerConst.cs @@ -254,8 +254,8 @@ namespace Framework.Constants public enum ResetFailedReason { Failed = 0, // "Cannot reset %s. There are players still inside the instance." - Zoning = 1, // "Cannot reset %s. There are players in your party attempting to zone into an instance." - Offline = 2 // "Cannot reset %s. There are players offline in your party." + Offline = 1, // "Cannot reset %s. There are players offline in your party." + Zoning = 2 // "Cannot reset %s. There are players in your party attempting to zone into an instance." } public enum ActivateTaxiReply