From 26ef0940f8cf11480568e0892e4bd5f4125f975c Mon Sep 17 00:00:00 2001 From: ShadowNet Date: Sat, 26 Mar 2022 02:53:31 -0400 Subject: [PATCH] Changue spell 9454 to 38505 --- src/AnticheatMgr.cpp | 8 ++++---- src/cs_anticheat.cpp | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/AnticheatMgr.cpp b/src/AnticheatMgr.cpp index 3bea46d..4bf30a4 100644 --- a/src/AnticheatMgr.cpp +++ b/src/AnticheatMgr.cpp @@ -1,4 +1,4 @@ -/* +/* * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your @@ -613,10 +613,10 @@ void AnticheatMgr::BuildReport(Player* player, uint16 reportType) sWorld->SendGlobalGMMessage(&data); WorldLocation loc; - loc = WorldLocation(1, 16226.5f, 16403.6f, -64.5f, 3.2f);// GM Jail Location + loc = WorldLocation(1, 16226.5f, 16403.6f, -64.5f, 3.2f); // GM Jail Location player->TeleportTo(loc); - player->SetHomebind(loc, 876);// GM Jail Homebind location - player->CastSpell(player,9454);// freeze him in place to ensure no exploit happens for jail break attempt + player->SetHomebind(loc, 876); // GM Jail Homebind location + player->CastSpell(player, 38505); // Shackle him in place to ensure no exploit happens for jail break attempt if (sConfigMgr->GetOption("Anticheat.AnnounceJail", true)) { diff --git a/src/cs_anticheat.cpp b/src/cs_anticheat.cpp index c4316ba..40a9f99 100644 --- a/src/cs_anticheat.cpp +++ b/src/cs_anticheat.cpp @@ -1,4 +1,4 @@ -/* +/* * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your @@ -123,10 +123,10 @@ public: handler->GetSession()->GetPlayer()->TeleportTo(1,16226.5f,16403.6f,-64.5f,3.2f); WorldLocation loc; - loc = WorldLocation(1, 16226.5f, 16403.6f, -64.5f, 3.2f);// GM Jail Location + loc = WorldLocation(1, 16226.5f, 16403.6f, -64.5f, 3.2f); // GM Jail Location pTarget->TeleportTo(loc); - pTarget->SetHomebind(loc, 876);// GM Jail Homebind location - pTarget->CastSpell(pTarget, 9454);// freeze him in place to ensure no exploit happens for jail break attempt + pTarget->SetHomebind(loc, 876); // GM Jail Homebind location + pTarget->CastSpell(pTarget, 38505); // Shackle him in place to ensure no exploit happens for jail break attempt return true; }