Fixes implicit ternary expressions

This commit is contained in:
Kamron Batman 2018-09-14 14:56:48 -07:00
parent c85b0a740c
commit ff26dfa375
345 changed files with 1905 additions and 2336 deletions

View file

@ -69,12 +69,11 @@ namespace Server.Items
if ( rand < 0.12 )
return 0x19B7;
else if ( rand < 0.18 )
if ( rand < 0.18 )
return 0x19B8;
else if ( rand < 0.25 )
if ( rand < 0.25 )
return 0x19BA;
else
return 0x19B9;
return 0x19B9;
}
public BaseOre( CraftResource resource ) : this( resource, 1 )