Replace usages of ISharedNotifyManager and IServerNotifyManager with extension methods (#1965)

* Replace usages of ISharedNotifyManager and IServerNotifyManager with extension methods

* Remove redundant code
This commit is contained in:
DrSmugleaf
2020-09-01 12:34:53 +02:00
committed by GitHub
parent 14259ed920
commit 8f9ed2f562
53 changed files with 247 additions and 375 deletions

View File

@@ -73,7 +73,7 @@ namespace Content.Server.GameObjects.Components.Movement
canVault = CanVault(eventArgs.User, eventArgs.Dropped, eventArgs.Target, out reason);
if (!canVault)
eventArgs.User.PopupMessage(eventArgs.User, reason);
eventArgs.User.PopupMessage(reason);
return canVault;
}