Skip to content

Commit

Permalink
More clear message for SetTeamCount
Browse files Browse the repository at this point in the history
  • Loading branch information
NexiusTailer authored Oct 11, 2024
1 parent 40536e5 commit 0ac24ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Server/Components/Pawn/Scripting/Core/Natives.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,8 @@ SCRIPT_API(SetNameTagDrawDistance, bool(float distance))

SCRIPT_API(SetTeamCount, bool(int count))
{
throw pawn_natives::NotImplemented();
PawnManager::Get()->core->logLn(LogLevel::Warning, "SetTeamCount() function is removed.");
return true;
}

SCRIPT_API(SetWeather, bool(int weatherid))
Expand Down

0 comments on commit 0ac24ef

Please sign in to comment.