Skip to content
Snippets Groups Projects
Commit 18e22965 authored by MELERIX's avatar MELERIX
Browse files

BETA: Minor Update for AdminBan.java (-1 for ban, not -100).

parent 4152d5f7
No related branches found
No related tags found
No related merge requests found
......@@ -27,11 +27,11 @@
<property name="build.dist.game" location="${build.dist}/game" />
<property name="build.dist.login" location="${build.dist}/login" />
<target name="init" depends="checkRequirements,getChangelogDateVersion" description="Create the output directories. Do nothing if dirs were already created">
<target name="init" depends="checkRequirements,getChangelogDateVersion" description="Create the output directories.">
<mkdir dir="${build}" />
</target>
<target name="dist" depends="init" description="Syncronizes build space contents with project.">
<target name="dist" depends="init" description="Export the files to the output directory.">
<sync todir="${build.dist}" includeemptydirs="true">
<fileset dir="dist" />
</sync>
......@@ -43,7 +43,7 @@
<zip destfile="${build}/L2J_DataPack_BETA.zip" basedir="${build.dist}" level="9" update="true" />
</target>
<target name="checkRequirements" description="Check Requirements">
<target name="checkRequirements" description="Check Requirements.">
<fail message="Ant 1.8.2 is required. But your version is ${ant.version}">
<condition>
<not>
......@@ -53,7 +53,7 @@
</fail>
</target>
<target name="getChangelogDateVersion" description="Get Changelog, Date, Version">
<target name="getChangelogDateVersion" description="Get Changelog, Date, Version.">
<exec dir="." executable="svn" outputproperty="l2j.changelog">
<arg value="log" />
<arg value="--stop-on-copy" />
......
......@@ -31,8 +31,8 @@ import com.l2jserver.gameserver.util.GMAudit;
/**
* This class handles following admin commands:
* - ban_acc <account_name> = changes account access level to -100 and logs him off. If no account is specified target's account is used.
* - ban_char <char_name> = changes a characters access level to -100 and logs him off. If no character is specified target is used.
* - ban_acc <account_name> = changes account access level to -1 and logs him off. If no account is specified target's account is used.
* - ban_char <char_name> = changes a characters access level to -1 and logs him off. If no character is specified target is used.
* - ban_chat <char_name> <duration> = chat bans a character for the specified duration. If no name is specified the target is chat banned indefinitely.
* - unban_acc <account_name> = changes account access level to 0.
* - unban_char <char_name> = changes specified characters access level to 0.
......@@ -116,7 +116,7 @@ public class AdminBan implements IAdminCommandHandler
}
else if (targetPlayer == null)
{
LoginServerThread.getInstance().sendAccessLevel(player, -100);
LoginServerThread.getInstance().sendAccessLevel(player, -1);
activeChar.sendMessage("Ban request sent for account "+player);
auditAction(command, activeChar, player);
}
......@@ -135,7 +135,7 @@ public class AdminBan implements IAdminCommandHandler
return false;
}
auditAction(command, activeChar, (targetPlayer == null ? player : targetPlayer.getName()));
return changeCharAccessLevel(targetPlayer, player, activeChar, -100);
return changeCharAccessLevel(targetPlayer, player, activeChar, -1);
}
else if (command.startsWith("admin_ban_chat"))
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment