This commit is contained in:
Infi
2026-05-01 11:59:25 +02:00
parent 7dc34c6013
commit 3bc8a223c2
2 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
<Project Sdk="Dalamud.NET.Sdk/15.0.0"> <Project Sdk="Dalamud.NET.Sdk/15.0.0">
<PropertyGroup> <PropertyGroup>
<Version>1.35.2</Version> <Version>1.35.3</Version>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup> </PropertyGroup>
+8 -8
View File
@@ -74,15 +74,15 @@ internal static class InputChannelExt
public static string Prefix(this InputChannel channel) => channel switch public static string Prefix(this InputChannel channel) => channel switch
{ {
InputChannel.Tell => "/tell", InputChannel.Tell => "/t",
InputChannel.Say => "/say", InputChannel.Say => "/s",
InputChannel.Party => "/party", InputChannel.Party => "/p",
InputChannel.Alliance => "/alliance", InputChannel.Alliance => "/a",
InputChannel.Yell => "/yell", InputChannel.Yell => "/y",
InputChannel.Shout => "/shout", InputChannel.Shout => "/sh",
InputChannel.FreeCompany => "/fc", InputChannel.FreeCompany => "/fc",
InputChannel.PvpTeam => "/pt", InputChannel.PvpTeam => "/pt",
InputChannel.NoviceNetwork => "/n", InputChannel.NoviceNetwork => "/b",
InputChannel.CrossLinkshell1 => "/cwl1", InputChannel.CrossLinkshell1 => "/cwl1",
InputChannel.CrossLinkshell2 => "/cwl2", InputChannel.CrossLinkshell2 => "/cwl2",
InputChannel.CrossLinkshell3 => "/cwl3", InputChannel.CrossLinkshell3 => "/cwl3",
@@ -139,7 +139,7 @@ internal static class InputChannelExt
InputChannel.Linkshell6 => [112], InputChannel.Linkshell6 => [112],
InputChannel.Linkshell7 => [113], InputChannel.Linkshell7 => [113],
InputChannel.Linkshell8 => [114], InputChannel.Linkshell8 => [114],
_ => [] _ => [],
}; };
if (ids.Length == 0) if (ids.Length == 0)