world changing commit

This commit is contained in:
TrialTemp 2024-01-20 19:24:50 -06:00
parent f11d4ac261
commit f9b9623423
No known key found for this signature in database
GPG Key ID: D7F285CEE8FBAF35
3 changed files with 5 additions and 1 deletions

View File

@ -11,6 +11,7 @@
- Players now get points for killing bots with their own bombs by catching it
and throwing it back at them. This is actually old logic but was disabled due
to a logic flaw, but should be fixed now. (Thanks VinniTR!)
- Custom spaz "curse_time" values now work properly. (Thanks Temp!)
### 1.7.32 (build 21741, api 8, 2023-12-20)
- Fixed a screen message that no one will ever see (Thanks vishal332008?...)

View File

@ -50,3 +50,6 @@
### Rikko
- Created the original "reject_recently_left_players" plugin
### Temp (3alTemp)
- Modder & Bug Fixer

View File

@ -624,7 +624,7 @@ class Spaz(bs.Actor):
1000.0 * (tval + self.curse_time)
)
self._curse_timer = bs.Timer(
5.0, bs.WeakCall(self.handlemessage, CurseExplodeMessage())
self.curse_time, bs.WeakCall(self.handlemessage, CurseExplodeMessage())
)
def equip_boxing_gloves(self) -> None: