mirror of
https://github.com/Jackzmc/sourcemod-plugins.git
synced 2025-05-06 23:53:21 +00:00
Update
This commit is contained in:
parent
ea0bc8c543
commit
28796e46cf
19 changed files with 165 additions and 132 deletions
|
@ -964,4 +964,12 @@ stock void GetMenuDisplayName(int client, char[] display, int maxlen) {
|
|||
else {
|
||||
GetClientName(client, display, maxlen);
|
||||
}
|
||||
}
|
||||
|
||||
stock int MathMax(int a, int b) {
|
||||
return a > b ? a : b;
|
||||
}
|
||||
|
||||
stock int MathMin(int a, int b) {
|
||||
return a < b ? a : b;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue