Skip to content

Commit

Permalink
d_wood: Whoops. Fix some build errors related to extra params
Browse files Browse the repository at this point in the history
  • Loading branch information
themikelester committed Oct 24, 2024
1 parent c01ae25 commit 5209d78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ZeldaWindWaker/d_wood.ts
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ class Anm_c {
}

// Animate when cut with a weapon
public mode_cut(): void {
public mode_cut(packet: Packet_c): void {
this.mVelY = this.mVelY - 3.0;
if (this.mVelY < -40.0) {
this.mVelY = -40.0;
Expand Down Expand Up @@ -451,7 +451,7 @@ class Anm_c {
}

// Animate normally (not interacting with character)
public mode_norm(): void {
public mode_norm(packet: Packet_c): void {
let phase;
if (this.mWindPow < 0.33) {
phase = AttrSway_e.Light;
Expand Down

0 comments on commit 5209d78

Please sign in to comment.