Skip to content

Commit

Permalink
chore: tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
WizzyGeek committed Jan 12, 2024
1 parent 3c99a92 commit 9c83228
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pwncore/models/ctf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async def _solves(self) -> int:

async def update_points(self) -> None:
self.points = round(
self.mi + (self.ma - self.mi) * (1 - tanh((await self._solves()) / 125))
self.mi + (self.ma - self.mi) * (1 - tanh((await self._solves()) / 25))
)
await self.save()

Expand Down

0 comments on commit 9c83228

Please sign in to comment.