Skip to content

Commit

Permalink
fixed invalid peds spawning when selecting from the list
Browse files Browse the repository at this point in the history
  • Loading branch information
TomGrobbe committed May 23, 2018
1 parent 4d2bd20 commit 0a83cbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vMenu/menus/PlayerAppearance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ private void CreateMenu()
}
else
{
int i = ((sender.CurrentSelection - 7) * 50) + index;
int i = ((sender.CurrentSelection - 8) * 50) + index;
string modelName = modelNames[i];
if (cf.IsAllowed(Permission.PASpawnNew))
{
Expand Down

0 comments on commit 0a83cbf

Please sign in to comment.