Aura.Channel.Network.Sending.Send.RemoveDeathScreen C# (CSharp) 메소드

RemoveDeathScreen() 공개 정적인 메소드

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
리턴 void
		public static void RemoveDeathScreen(Creature creature)
		{
			var packet = new Packet(Op.RemoveDeathScreen, creature.EntityId);

			creature.Region.Broadcast(packet);
		}
Send