Skip to content

Commit

Permalink
Bugfixing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kotáb Petr committed Jan 8, 2023
1 parent ffe8f60 commit 7a79c40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion TestGame/Scenes/ShopScene.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private void CreateShoppingWindow()
return;
inventory.Coins -= type.Price / 2;
int slot = inventory.GetItemSlotOrFreeSlot<ProductItem>(type.PlantID);
int slot = inventory.GetItemSlotOrFreeSlot<SeedItem>(type.PlantID);
if (slot == -1)
return;
Expand Down
2 changes: 1 addition & 1 deletion TestGame/TestGame.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>

Expand Down

0 comments on commit 7a79c40

Please sign in to comment.