From 0c0198c4833d20f4d9965e1eeb842f828fee53f9 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Wed, 6 May 2020 15:31:51 -0400 Subject: [PATCH] Revert "Core/Battlegrounds: disable health regen for battleground vehicles" This reverts commit 96294d3af57201ed970e89dc5669f4b5394a27fd. --- Source/Game/BattleGrounds/BattleGround.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Source/Game/BattleGrounds/BattleGround.cs b/Source/Game/BattleGrounds/BattleGround.cs index 5f97b7b91..1511ed56d 100644 --- a/Source/Game/BattleGrounds/BattleGround.cs +++ b/Source/Game/BattleGrounds/BattleGround.cs @@ -1471,9 +1471,6 @@ namespace Game.BattleGrounds if (respawntime != 0) creature.SetRespawnDelay(respawntime); - if (creature.IsVehicle()) - creature.SetRegeneratingHealth(false); - return creature; }