Skip to content

Commit

Permalink
Fixed type for game birth time
Browse files Browse the repository at this point in the history
  • Loading branch information
Aidoneus committed Mar 27, 2023
1 parent 1272766 commit 48625ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1216,7 +1216,7 @@ int Player::receive() {
IN_EVENTS_LOG(ATTACH_TO_GAME);

if (this->client_version > 1) {
long int t = 0;
time_t t = 0;
time(&t);
out_buffer.begin_event(zTIME_RESPONSE);
out_buffer < (unsigned int)t;
Expand Down

0 comments on commit 48625ce

Please sign in to comment.