Aura.Channel.Network.Sending.Send.RemoveDeathScreen C# (CSharp) Method

RemoveDeathScreen() public static method

Broadcasts RemoveDeathScreen in range of creature.
Removes black bars and unlocks player. Update: This has to be broadcasted, otherwise other players are visually stuck in death mode. TODO: Maybe change name.
public static RemoveDeathScreen ( Creature creature ) : void
creature Creature
return void
		public static void RemoveDeathScreen(Creature creature)
		{
			var packet = new Packet(Op.RemoveDeathScreen, creature.EntityId);

			creature.Region.Broadcast(packet);
		}
Send