Remove IAfterInteract (#9715)
* remove gas analyzer iafterinteract * solution transfer + obsolete * cuffable * remove
This commit is contained in:
@@ -12,6 +12,7 @@ namespace Content.Shared.Popups
|
||||
/// <param name="source">The entity above which the message will appear.</param>
|
||||
/// <param name="viewer">The entity that will see the message.</param>
|
||||
/// <param name="message">The message to show.</param>
|
||||
[Obsolete("Use PopupSystem.PopupEntity instead.")]
|
||||
public static void PopupMessage(this EntityUid source, EntityUid viewer, string message)
|
||||
{
|
||||
var popupSystem = EntitySystem.Get<SharedPopupSystem>();
|
||||
@@ -24,6 +25,7 @@ namespace Content.Shared.Popups
|
||||
/// </summary>
|
||||
/// <param name="viewer">The entity that will see the message.</param>
|
||||
/// <param name="message">The message to be seen.</param>
|
||||
[Obsolete("Use PopupSystem.PopupEntity instead.")]
|
||||
public static void PopupMessage(this EntityUid viewer, string message)
|
||||
{
|
||||
viewer.PopupMessage(viewer, message);
|
||||
@@ -35,6 +37,7 @@ namespace Content.Shared.Popups
|
||||
/// <param name="coordinates">Location on a grid that the message floats up from.</param>
|
||||
/// <param name="viewer">The client attached entity that the message is being sent to.</param>
|
||||
/// <param name="message">Text contents of the message.</param>
|
||||
[Obsolete("Use PopupSystem.PopupCoordinates instead.")]
|
||||
public static void PopupMessage(this EntityCoordinates coordinates, EntityUid viewer, string message)
|
||||
{
|
||||
var popupSystem = EntitySystem.Get<SharedPopupSystem>();
|
||||
@@ -48,6 +51,7 @@ namespace Content.Shared.Popups
|
||||
/// The client attached entity that the message is being sent to.
|
||||
/// </param>
|
||||
/// <param name="message">Text contents of the message.</param>
|
||||
[Obsolete("Use PopupSystem.PopupCursor instead.")]
|
||||
public static void PopupMessageCursor(this EntityUid viewer, string message)
|
||||
{
|
||||
var popupSystem = EntitySystem.Get<SharedPopupSystem>();
|
||||
|
||||
Reference in New Issue
Block a user