forked from adam/discord-bot-shtik
debug statement cleanup
All checks were successful
greyn/vassago/pipeline/head This commit looks good
All checks were successful
greyn/vassago/pipeline/head This commit looks good
This commit is contained in:
parent
51fba995c3
commit
d2aa1f46cc
@ -99,7 +99,6 @@ public class DiscordInterface
|
|||||||
if (await thingmanagementdoer.Instance.ActOn(m))
|
if (await thingmanagementdoer.Instance.ActOn(m))
|
||||||
{
|
{
|
||||||
m.ActedOn = true;
|
m.ActedOn = true;
|
||||||
Console.WriteLine("survived a savechanges: 103");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_db.SaveChanges();
|
_db.SaveChanges();
|
||||||
@ -121,7 +120,6 @@ public class DiscordInterface
|
|||||||
// seenIn.Add(defaultChannel);
|
// seenIn.Add(defaultChannel);
|
||||||
// u.SeenInChannels = seenIn;
|
// u.SeenInChannels = seenIn;
|
||||||
// _db.SaveChanges();
|
// _db.SaveChanges();
|
||||||
Console.WriteLine("survived a savechanges: 123");
|
|
||||||
// }
|
// }
|
||||||
return thingmanagementdoer.Instance.OnJoin(u, defaultChannel);
|
return thingmanagementdoer.Instance.OnJoin(u, defaultChannel);
|
||||||
|
|
||||||
@ -191,7 +189,6 @@ public class DiscordInterface
|
|||||||
}
|
}
|
||||||
return a;
|
return a;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal Message UpsertMessage(IUserMessage dMessage)
|
internal Message UpsertMessage(IUserMessage dMessage)
|
||||||
{
|
{
|
||||||
var addPlease = false;
|
var addPlease = false;
|
||||||
|
@ -47,7 +47,6 @@ namespace vassago.DiscordInterface
|
|||||||
{
|
{
|
||||||
Console.WriteLine($"deleting command {existingCommand.Name} - (created at {existingCommand.CreatedAt}, it's in guild {existingCommand.Guild?.Id} while I'm in {guild?.Id})");
|
Console.WriteLine($"deleting command {existingCommand.Name} - (created at {existingCommand.CreatedAt}, it's in guild {existingCommand.Guild?.Id} while I'm in {guild?.Id})");
|
||||||
await existingCommand.DeleteAsync();
|
await existingCommand.DeleteAsync();
|
||||||
Console.WriteLine("survived");
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -56,7 +55,6 @@ namespace vassago.DiscordInterface
|
|||||||
{
|
{
|
||||||
Console.WriteLine($"overwriting command {existingCommand.Name}");
|
Console.WriteLine($"overwriting command {existingCommand.Name}");
|
||||||
await myVersion.register(false, client, guild);
|
await myVersion.register(false, client, guild);
|
||||||
Console.WriteLine($"survived");
|
|
||||||
}
|
}
|
||||||
myVersion.alreadyRegistered = true;
|
myVersion.alreadyRegistered = true;
|
||||||
}
|
}
|
||||||
@ -65,7 +63,6 @@ namespace vassago.DiscordInterface
|
|||||||
{
|
{
|
||||||
Console.WriteLine($"creating new command {remaining.Id} ({(remaining.guild == null ? "global" : $"for guild {remaining.guild}")})");
|
Console.WriteLine($"creating new command {remaining.Id} ({(remaining.guild == null ? "global" : $"for guild {remaining.guild}")})");
|
||||||
await remaining.register(true, client, guild);
|
await remaining.register(true, client, guild);
|
||||||
Console.WriteLine($"survived");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user