Skip to content

Commit

Permalink
Fix for blood stains - carpet z indices
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas committed Feb 27, 2019
1 parent 24ef31d commit 24d3763
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Game/GameLogic/rooms/basement/Carpet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace SessionSeven.Basement
[Serializable]
public class Carpet : Entity
{
public const int Z = 1;
public const int Z = 2;
public Carpet()
{
Interaction
Expand All @@ -30,7 +30,7 @@ public Carpet()

Transform
.Create(this)
.SetZ(Z + 1);
.SetZ(Z);

Enabled = false;
}
Expand Down

0 comments on commit 24d3763

Please sign in to comment.