Aura.Channel.World.Dungeons.Puzzles.PuzzlePlace.ReservePlace C# (CSharp) Method

ReservePlace() public method

Declares that this place is not to be used by any other puzzles. If we didn't declare this place to be something, reserve random place.
public ReservePlace ( ) : void
return void
		public void ReservePlace()
		{
			if (this.IsUnlock || this.IsLock || this.IsBossLock)
				_section.ReservePlace(PlaceIndex);
			else
			{
				PlaceIndex = _section.ReservePlace();
				_room = _section.Places[PlaceIndex].Room;

				this.UpdatePosition();
			}
		}