Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Code/Entities/NonReturnSokoban.cs
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@

public void Attack(Vector2 direction)
{
Audio.Play("event:/game/06_reflection/Sokoban_activate", Center);
Audio.Play("event:/game/06_reflection/crushblock_activate", Center);
bool flag = this.currentMoveLoopSfx != null;
if (flag)
{
Expand All @@ -352,7 +352,7 @@
}
Add(this.currentMoveLoopSfx = new SoundSource());
this.currentMoveLoopSfx.Position = new Vector2(Width, Height) / 2f;
this.currentMoveLoopSfx.Play("event:/game/06_reflection/Sokoban_move_loop", null, 0f);
this.currentMoveLoopSfx.Play("event:/game/06_reflection/crushblock_move_loop", null, 0f);
this.face.Play("hit", false, false);
this.crushDir = direction;
this.canActivate = false;
Expand Down Expand Up @@ -669,7 +669,7 @@
}
}
}
Audio.Play("event:/game/06_reflection/Sokoban_impact", this.Center);
Audio.Play("event:/game/06_reflection/crushblock_impact", this.Center);
this.level.DirectionalShake(this.crushDir, 0.3f);
Input.Rumble(RumbleStrength.Medium, RumbleLength.Medium);
this.StartShaking(0.4f);
Expand Down Expand Up @@ -804,7 +804,7 @@
// Token: 0x040007F0 RID: 2032
public Color fill;
public Axes axes;
private bool altTexture;

Check warning on line 807 in Code/Entities/NonReturnSokoban.cs

View workflow job for this annotation

GitHub Actions / build

The field 'NonReturnSokoban.altTexture' is never used

// Token: 0x040007F1 RID: 2033
private Level level;
Expand Down
Loading