Skip to content

Commit

Permalink
Some formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
NoPressF committed Oct 18, 2024
1 parent 81e7d3c commit 13ae21a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Server/Components/Pawn/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ inline cell AMX_NATIVE_CALL pawn_IsTimerPaused(AMX* amx, cell const* params)
return false;
}

if(!timer->paused())
if (!timer->paused())
{
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion Server/Components/Timers/timer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Timer final : public ITimer
{
paused_ = paused;

if(paused)
if (paused)
{
pausedTime_ = Time::now();
}
Expand Down
2 changes: 1 addition & 1 deletion Server/Components/Timers/timers_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class TimersComponent final : public ITimersComponent, public CoreEventHandler
}
else
{
if(timer->paused())
if (timer->paused())
{
++it;
continue;
Expand Down

0 comments on commit 13ae21a

Please sign in to comment.