should probably give vips the capacity boost by default

This commit is contained in:
jenz 2026-06-18 14:50:47 +02:00
parent d062b04353
commit bb7c7f8549

View File

@ -313,6 +313,14 @@ public int Native_GetPlayerWorthRTV_boost(Handle plugin, int numParams)
}
int avg = GetAveragePlayerActiveTimeServer();
//give vips the rtv/nomination/mapvote boost by default
AdminId id = GetUserAdmin(client);
if (id != INVALID_ADMIN_ID && GetAdminFlag(id, Admin_Reservation))
{
return g_iPlayerRTVCapacity;
}
//give tier the rtv/nomination/mapvote boost
if (g_iPlayerTier[client] >= g_iRtvBoost_tier)
{