summaryrefslogtreecommitdiff
path: root/DSACore/Commands/NpcCommands.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-09-27 00:31:30 +0200
committerTrueDoctor <d-kobert@web.de>2018-09-27 00:31:30 +0200
commitcd4785347eb641a0fab1a7157d701dd5d8c3259f (patch)
tree30ffcea7337231f84c47d45316babf45c24c3682 /DSACore/Commands/NpcCommands.cs
parent19bf37de7642ae8cdefd8fc6b4fadac3ac96ea9b (diff)
hoked the command handler up to the web api
modified file locations
Diffstat (limited to 'DSACore/Commands/NpcCommands.cs')
-rw-r--r--DSACore/Commands/NpcCommands.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/DSACore/Commands/NpcCommands.cs b/DSACore/Commands/NpcCommands.cs
index 1fe8e2e..50ea966 100644
--- a/DSACore/Commands/NpcCommands.cs
+++ b/DSACore/Commands/NpcCommands.cs
@@ -24,14 +24,14 @@ namespace DSACore.Commands
}
- public static string Random(ulong id, string npcName, int mean = 9, int stDv = 1)
+ private static string Random(ulong id, string npcName, int mean = 9, int stDv = 1)
{
throw new NotImplementedException();
Dsa.Chars.Add(new Npc(npcName, mean, stDv));
return $"{npcName} wurde zufällig generiert";
}
- public static string Copy(ulong id, string npcName, string source, int stDv = 1)
+ private static string Copy(ulong id, string npcName, string source, int stDv = 1)
{
if (Dsa.Chars.Exists(x => x.Name.Equals(npcName)))
{