patch sus?

This commit is contained in:
Chayapak 2023-04-28 11:08:51 +07:00
parent 3d03932e96
commit 9610850424
2 changed files with 14 additions and 12 deletions

View file

@ -4,7 +4,7 @@
<option name="autoReloadType" value="SELECTIVE" /> <option name="autoReloadType" value="SELECTIVE" />
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="50f184fa-7bed-4956-baf5-7586ff26ea08" name="Changes" comment="bots mabe"> <list default="true" id="50f184fa-7bed-4956-baf5-7586ff26ea08" name="Changes" comment="amogus">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
</list> </list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
@ -97,13 +97,6 @@
<option name="presentableId" value="Default" /> <option name="presentableId" value="Default" />
<updated>1680245437032</updated> <updated>1680245437032</updated>
</task> </task>
<task id="LOCAL-00080" summary="what the fuck i commited the wrong file">
<created>1681806738901</created>
<option name="number" value="00080" />
<option name="presentableId" value="LOCAL-00080" />
<option name="project" value="LOCAL" />
<updated>1681806738901</updated>
</task>
<task id="LOCAL-00081" summary="mabe"> <task id="LOCAL-00081" summary="mabe">
<created>1681806777109</created> <created>1681806777109</created>
<option name="number" value="00081" /> <option name="number" value="00081" />
@ -440,7 +433,14 @@
<option name="project" value="LOCAL" /> <option name="project" value="LOCAL" />
<updated>1682601960493</updated> <updated>1682601960493</updated>
</task> </task>
<option name="localTasksCounter" value="129" /> <task id="LOCAL-00129" summary="amogus">
<created>1682644881918</created>
<option name="number" value="00129" />
<option name="presentableId" value="LOCAL-00129" />
<option name="project" value="LOCAL" />
<updated>1682644881919</updated>
</task>
<option name="localTasksCounter" value="130" />
<servers /> <servers />
</component> </component>
<component name="Vcs.Log.Tabs.Properties"> <component name="Vcs.Log.Tabs.Properties">
@ -455,7 +455,6 @@
</option> </option>
</component> </component>
<component name="VcsManagerConfiguration"> <component name="VcsManagerConfiguration">
<MESSAGE value="probably lazy fix the sus" />
<MESSAGE value="improve bot options? mabe mabe" /> <MESSAGE value="improve bot options? mabe mabe" />
<MESSAGE value="put the setter back" /> <MESSAGE value="put the setter back" />
<MESSAGE value="use serverName instead of host:port for console i guess" /> <MESSAGE value="use serverName instead of host:port for console i guess" />
@ -480,7 +479,8 @@
<MESSAGE value="chat queue delay in config" /> <MESSAGE value="chat queue delay in config" />
<MESSAGE value="new 1.19.4 update i guess" /> <MESSAGE value="new 1.19.4 update i guess" />
<MESSAGE value="bots mabe" /> <MESSAGE value="bots mabe" />
<option name="LAST_COMMIT_MESSAGE" value="bots mabe" /> <MESSAGE value="amogus" />
<option name="LAST_COMMIT_MESSAGE" value="amogus" />
</component> </component>
<component name="XSLT-Support.FileAssociations.UIState"> <component name="XSLT-Support.FileAssociations.UIState">
<expand /> <expand />

View file

@ -44,7 +44,7 @@ public class NetMessageCommand implements Command {
final String hostAndPort = bot.host() + ":" + bot.port(); final String hostAndPort = bot.host() + ":" + bot.port();
final Component component = Component.translatable( final Component component = Component.translatable(
"[%s] %s %s", "[%s]%s%s%s %s",
Component Component
.text(hostAndPort) .text(hostAndPort)
.color(NamedTextColor.GRAY) .color(NamedTextColor.GRAY)
@ -57,7 +57,9 @@ public class NetMessageCommand implements Command {
.append(Component.text("Click here to copy the server host and port to your clipboard").color(NamedTextColor.GREEN)) .append(Component.text("Click here to copy the server host and port to your clipboard").color(NamedTextColor.GREEN))
) )
), ),
Component.text(" "),
Component.text(context.sender().profile().getName()).color(NamedTextColor.GRAY), Component.text(context.sender().profile().getName()).color(NamedTextColor.GRAY),
Component.text(" "),
Component.text(String.join(" ", args)).color(NamedTextColor.GRAY) Component.text(String.join(" ", args)).color(NamedTextColor.GRAY)
).color(NamedTextColor.DARK_GRAY); ).color(NamedTextColor.DARK_GRAY);