Some cleanup of contains keys and try get values (#246)

This commit is contained in:
Kamron Batman 2020-09-13 20:20:44 -07:00 committed by GitHub
parent 9cbb0cfd23
commit a236617ad9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
69 changed files with 3508 additions and 350 deletions

View file

@ -31,11 +31,11 @@ namespace Server.ContextMenus
if (target is Mobile mobile)
{
mobile.GetContextMenuEntries(@from, list);
mobile.GetContextMenuEntries(from, list);
}
else if (target is Item item)
{
item.GetContextMenuEntries(@from, list);
item.GetContextMenuEntries(from, list);
}
Entries = list.ToArray();