Merge branch '2.3' into 2.4-pr
This commit is contained in:
@ -488,7 +488,7 @@ namespace SharedLibraryCore.Commands
|
||||
})
|
||||
{ }
|
||||
|
||||
public override Task ExecuteAsync(GameEvent E)
|
||||
public override async Task ExecuteAsync(GameEvent E)
|
||||
{
|
||||
Permission oldPerm = E.Target.Level;
|
||||
Permission newPerm = Utilities.MatchPermission(E.Data);
|
||||
@ -496,15 +496,16 @@ namespace SharedLibraryCore.Commands
|
||||
if (E.Target == E.Origin)
|
||||
{
|
||||
E.Origin.Tell(Utilities.CurrentLocalization.LocalizationIndex["COMMANDS_SETLEVEL_SELF"]);
|
||||
return Task.CompletedTask;
|
||||
return;
|
||||
}
|
||||
|
||||
else if (newPerm == Permission.Owner &&
|
||||
!E.Owner.Manager.GetApplicationSettings().Configuration().EnableMultipleOwners)
|
||||
!E.Owner.Manager.GetApplicationSettings().Configuration().EnableMultipleOwners &&
|
||||
await E.Owner.Manager.GetClientService().GetOwnerCount() > 0)
|
||||
{
|
||||
// only one owner is allowed
|
||||
E.Origin.Tell(Utilities.CurrentLocalization.LocalizationIndex["COMMANDS_SETLEVEL_OWNER"]);
|
||||
return Task.CompletedTask;
|
||||
return;
|
||||
}
|
||||
|
||||
else if (E.Origin.Level < Permission.Owner &&
|
||||
@ -512,7 +513,7 @@ namespace SharedLibraryCore.Commands
|
||||
{
|
||||
// only the owner is allowed to set levels
|
||||
E.Origin.Tell($"{Utilities.CurrentLocalization.LocalizationIndex["COMMANDS_SETLEVEL_STEPPEDDISABLED"]} ^5{E.Target.Name}");
|
||||
return Task.CompletedTask;
|
||||
return;
|
||||
}
|
||||
|
||||
else if ((E.Origin.Level <= newPerm &&
|
||||
@ -522,7 +523,7 @@ namespace SharedLibraryCore.Commands
|
||||
// can't promote a client to higher than your current perms
|
||||
// or your peer
|
||||
E.Origin.Tell(string.Format(Utilities.CurrentLocalization.LocalizationIndex["COMMANDS_SETLEVEL_LEVELTOOHIGH"], E.Target.Name, (E.Origin.Level - 1).ToString()));
|
||||
return Task.CompletedTask;
|
||||
return;
|
||||
}
|
||||
|
||||
else if (newPerm > Permission.Banned)
|
||||
@ -557,8 +558,6 @@ namespace SharedLibraryCore.Commands
|
||||
{
|
||||
E.Origin.Tell(Utilities.CurrentLocalization.LocalizationIndex["COMMANDS_SETLEVEL_FAIL"]);
|
||||
}
|
||||
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user