.NET Format Style Fixes

This commit is contained in:
chompDev
2025-07-08 20:45:46 +00:00
committed by Format Bot
parent 77129ab229
commit b5e9f9cb14
4 changed files with 9 additions and 24 deletions
@@ -38,10 +38,7 @@ public class SptCommandoCommands : IChatCommand
public string CommandPrefix
{
get
{
return "spt";
}
get { return "spt"; }
}
public string GetCommandHelp(string command)
@@ -51,10 +48,7 @@ public class SptCommandoCommands : IChatCommand
public List<string> Commands
{
get
{
return _sptCommands.Keys.ToList();
}
get { return _sptCommands.Keys.ToList(); }
}
public async ValueTask<string> Handle(
@@ -42,10 +42,7 @@ public class GiveSptCommand(
public string Command
{
get
{
return "give";
}
get { return "give"; }
}
public string CommandHelp
@@ -53,8 +50,8 @@ public class GiveSptCommand(
get
{
return "spt give\n========\nSends items to the player through the message system.\n\n\tspt give [template ID] [quantity]\n\t\tEx: "
+ "spt give 544fb25a4bdc2dfb738b4567 2\n\n\tspt give [\"item name\"] [quantity]\n\t\tEx: spt give \"pack of sugar\" 10\n\n\tspt "
+ "give [locale] [\"item name\"] [quantity]\n\t\tEx: spt give fr \"figurine de chat\" 3";
+ "spt give 544fb25a4bdc2dfb738b4567 2\n\n\tspt give [\"item name\"] [quantity]\n\t\tEx: spt give \"pack of sugar\" 10\n\n\tspt "
+ "give [locale] [\"item name\"] [quantity]\n\t\tEx: spt give fr \"figurine de chat\" 3";
}
}
@@ -32,10 +32,7 @@ public class ProfileSptCommand(
public string Command
{
get
{
return "profile";
}
get { return "profile"; }
}
public string CommandHelp
@@ -43,8 +40,8 @@ public class ProfileSptCommand(
get
{
return "spt profile\n========\nSets the profile level or skill to the desired level through the message system.\n\n\tspt "
+ "profile level [desired level]\n\t\tEx: spt profile level 20\n\n\tspt profile skill [skill name] [quantity]\n\t\tEx: "
+ "spt profile skill metabolism 51";
+ "profile level [desired level]\n\t\tEx: spt profile level 20\n\n\tspt profile skill [skill name] [quantity]\n\t\tEx: "
+ "spt profile skill metabolism 51";
}
}
@@ -26,10 +26,7 @@ public class TraderSptCommand(
public string Command
{
get
{
return "trader";
}
get { return "trader"; }
}
public string CommandHelp