Skip to content

Commit

Permalink
Update spaz.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vinnytherabbit authored Nov 7, 2023
1 parent 544e26f commit 7fcce9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/assets/ba_data/python/bascenev1lib/actor/spaz.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ def curse(self) -> None:
1000.0 * (tval + self.curse_time)
)
self._curse_timer = bs.Timer(
5.0, bs.WeakCall(self.curse_explode)
5.0, bs.WeakCall(self.handlemessage, CurseExplodeMessage())
)

def equip_boxing_gloves(self) -> None:
Expand Down Expand Up @@ -1157,7 +1157,7 @@ def handlemessage(self, msg: Any) -> Any:
bs.timer(
0.05,
bs.WeakCall(
self.curse_explode, msg.get_source_player(bs.Player)
self.handlemessage, CurseExplodeMessage()
),
)

Expand Down

0 comments on commit 7fcce9e

Please sign in to comment.