Thread: [Release] [CS:S] Z-Props
View Single Post
Jargon
SourceMod Donor
Join Date: Jun 2012
Location: Sydney, Australia
Old 07-06-2014 , 18:32   Re: [CS:S] Z-Props
Reply With Quote #11

Just a small problem I noticed on line 143:
Code:
	if (max_props < g_iprops[client])
Should be:
Code:
	if (max_props <= g_iprops[client])
Otherwise clients can spawn 1 more than the limit (e.g. if set to 1, clients can spawn 2 props).
Jargon is offline