chore: Cleans up pattern checks. (#892)
This commit is contained in:
parent
171df32257
commit
63e1b02d93
283 changed files with 587 additions and 702 deletions
|
|
@ -345,7 +345,7 @@ namespace Server.Items
|
|||
|
||||
public override void OnAfterDuped(Item newItem)
|
||||
{
|
||||
if (!(newItem is BaseTalisman talisman))
|
||||
if (newItem is not BaseTalisman talisman)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
@ -1190,7 +1190,7 @@ namespace Server.Items
|
|||
return;
|
||||
}
|
||||
|
||||
if (!(o is Mobile target))
|
||||
if (o is not Mobile target)
|
||||
{
|
||||
from.SendLocalizedMessage(1046439); // That is not a valid target.
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue