Fixes brace style (#248)

This commit is contained in:
Kamron Batman 2020-09-13 21:49:46 -07:00 committed by GitHub
parent a236617ad9
commit 8149620b0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1503 changed files with 28575 additions and 1717 deletions

View file

@ -73,7 +73,9 @@ namespace Server.Items
// Magic Wand
for (var i = Utility.Random(1, m_Level); i > 1; i--)
{
DropItem(Loot.RandomWand());
}
// Equipment
for (var i = Utility.Random(1, m_Level); i > 1; i--)
@ -99,11 +101,15 @@ namespace Server.Items
// Clothing
for (var i = Utility.Random(1, 2); i > 1; i--)
{
DropItem(Loot.RandomClothing());
}
// Jewelry
for (var i = Utility.Random(1, 2); i > 1; i--)
{
DropItem(Loot.RandomJewelry());
}
}
public TreasureChestLevel3(Serial serial)