Clean up: Bugs, LINQ, constructors, default values, and null checks (#18)

This commit is contained in:
Kamron Batman 2019-03-11 14:29:59 -07:00 • committed by GitHub
parent e748af4430
commit 513e54f70e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1094 changed files with 15913 additions and 21892 deletions

View file

@ -1,5 +1,4 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Server.Commands;
@ -261,22 +260,8 @@ namespace Server
private static bool IsClothes(int itemID)
{
if (itemID >= 0x1515 && itemID <= 0x1518)
return true;
if (itemID >= 0x152E && itemID <= 0x1531)
return true;
if (itemID >= 0x1537 && itemID <= 0x154C)
return true;
if (itemID >= 0x1EFD && itemID <= 0x1F04)
return true;
if (itemID >= 0x170B && itemID <= 0x171C)
return true;
return false;
return itemID >= 0x1515 && itemID <= 0x1518 || itemID >= 0x152E && itemID <= 0x1531 || itemID >= 0x1537
&& itemID <= 0x154C || itemID >= 0x1EFD && itemID <= 0x1F04 || itemID >= 0x170B && itemID <= 0x171C;
}
private static bool IsArmor(int itemID)