mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-06-28 08:16:38 +02:00
Lots of changes again. Most notable: Cmdoverride -> CommandOverride,
including things like CallCmdoverride() to CallCommandOverride(). Type changes like aTKline -> TKL and many more (in particular aSomething to Something etc. such as aWatch to Watch) but these are less used by 3rd party module coders.
This commit is contained in:
+2
-2
@@ -104,7 +104,7 @@ Command *AliasAdd(Module *module, char *cmd, AliasCmdFunc aliasfunc, unsigned ch
|
||||
|
||||
void CommandDelX(Command *command, RealCommand *cmd)
|
||||
{
|
||||
Cmdoverride *ovr, *ovrnext;
|
||||
CommandOverride *ovr, *ovrnext;
|
||||
|
||||
DelListItem(cmd, CommandHash[toupper(*cmd->cmd)]);
|
||||
if (command && cmd->owner)
|
||||
@@ -123,7 +123,7 @@ void CommandDelX(Command *command, RealCommand *cmd)
|
||||
for (ovr = cmd->overriders; ovr; ovr = ovrnext)
|
||||
{
|
||||
ovrnext = ovr->next;
|
||||
CmdoverrideDel(ovr);
|
||||
CommandOverrideDel(ovr);
|
||||
}
|
||||
MyFree(cmd->cmd);
|
||||
MyFree(cmd);
|
||||
|
||||
Reference in New Issue
Block a user