Skip to content

Commit

Permalink
Initialize session properties (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
UnknownNull authored Jan 30, 2024
1 parent 00b4cd2 commit dfa3464
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sergittos/bedwars/session/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ class Session {
private ?int $respawn_time = null;
private ?int $last_session_hit_time = null;

private int $coins;
private int $kills;
private int $wins;
private int $coins = 0;
private int $kills = 0;
private int $wins = 0;

private bool $loading_data;

Expand Down

0 comments on commit dfa3464

Please sign in to comment.