Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Essentials/Commands/InfoModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
using Torch.API.Managers;
using Torch.Mod;
using Torch.Mod.Messages;
using Sandbox.Game;
using Sandbox.Game.World;
using VRage.Game;

namespace Essentials.Commands
Expand Down Expand Up @@ -45,6 +43,7 @@ private static void MessageProcessing(TorchChatMessage msg, ref bool consumed)
ModCommunication.SendMessageTo(new DialogMessage(c.Command, content: c.DialogResponse), msg.AuthorSteamId.Value);
if (!string.IsNullOrEmpty(c.URL))
MyVisualScriptLogicProvider.OpenSteamOverlay($"https://steamcommunity.com/linkfilter/?url={c.URL}", playerId);

}
}
}
2 changes: 1 addition & 1 deletion Essentials/InfoCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public string URL
get => _urlResponse;
set => SetValue(ref _urlResponse, value);
}

public override string ToString()
{
return Command;
Expand Down