Creates random element extension (#196)

This commit is contained in:
Kamron Batman 2020-08-21 19:50:36 -07:00 • committed by GitHub
parent 0926b5abaa
commit 4403d6c1c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
84 changed files with 226 additions and 330 deletions

View file

@ -439,8 +439,8 @@ namespace Server.Items
if (randomizeOrder)
for (int i = 0; i < attrs.Length; i++)
{
int rand = Utility.Random(attrs.Length);
AosElementAttribute temp = attrs[i];
int rand = Utility.Random(attrs.Length);
attrs[i] = attrs[rand];
attrs[rand] = temp;
@ -501,7 +501,7 @@ namespace Server.Items
if (entries.Length == 0)
return SlayerName.None;
entry = entries[Utility.Random(entries.Length)];
entry = entries.RandomElement();
}
return entry.Name;