Exemplo n.º 1
0
        private void InspectFromCurrentLocation(Noun target)
        {
            if (_parserService.HasItemInCurrentLocation(target))
            {
                var targetItem = _parserService.GetItemFromCurrentLocation(target);

                this.Command.InspectItemInCurrentLocation(targetItem);
                return;
            }

            ItemStrings.ITEM_DOES_NOT_EXIST.OutputResponse(target);
        }