Skip to content
This repository was archived by the owner on Mar 23, 2024. It is now read-only.

Commit 60216c1

Browse files
authored
Merge pull request #36 from wopox1337/patch-1
Fix FREEBUYTIME_PASSED phrase not being printed correctly
2 parents 1a97571 + 872b529 commit 60216c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cstrike/addons/amxmodx/scripting/CSDM_ReAPI/csdm_equip_manager.sma

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ public CBasePlayer_HasRestrictItem(const pPlayer, const ItemID:iItemId, const It
269269

270270
if(g_flFreeBuyTime > 0.0 && g_flPlayerBuyTime[pPlayer] < get_gametime())
271271
{
272-
client_print(pPlayer, print_center, "FREEBUYTIME_PASSED", g_flFreeBuyTime)
272+
client_print(pPlayer, print_center, "%L", pPlayer, "FREEBUYTIME_PASSED", g_flFreeBuyTime)
273273
SetHookChainReturn(ATYPE_BOOL, true)
274274
return HC_SUPERCEDE
275275
}

0 commit comments

Comments
 (0)