فهرست منبع

Accompanying [DP3923], the //mobinst command have been deprecated.

DrLecter 17 سال پیش
والد
کامیت
cd85081370

+ 0 - 1
L2_GameServer_T1/java/config/command-privileges.properties

@@ -263,7 +263,6 @@ admin_mobgroup_casting = 100
 admin_mobgroup_nomove = 100
 admin_mobgroup_attackgrp = 100
 admin_mobgroup_invul = 100
-admin_mobinst = 100 
 admin_mobgroup_remove = 100
  
 #################

+ 1 - 1
L2_GameServer_T1/java/config/loginserver.properties

@@ -38,7 +38,7 @@ LoginPort=9014
 AcceptNewGameServer = False
 
 # If false, the licence (after the login) will not be shown
-# It is highly recomended for Account Seciurity to leave this option as defalut (True)
+# It is highly recomended for Account Security to leave this option as defalut (True)
 ShowLicence = True
 
 # Database info

+ 1 - 8
L2_GameServer_T1/java/net/sf/l2j/gameserver/handler/admincommandhandlers/AdminMobGroup.java

@@ -41,7 +41,7 @@ public class AdminMobGroup implements IAdminCommandHandler
 		"admin_mobgroup_spawn", "admin_mobgroup_unspawn", "admin_mobgroup_kill",
 		"admin_mobgroup_idle", "admin_mobgroup_attack", "admin_mobgroup_rnd",
 		"admin_mobgroup_return", "admin_mobgroup_follow", "admin_mobgroup_casting",
-		"admin_mobgroup_nomove" , "admin_mobgroup_attackgrp", "admin_mobgroup_invul", "admin_mobinst"};
+		"admin_mobgroup_nomove" , "admin_mobgroup_attackgrp", "admin_mobgroup_invul"};
 
 	private static final int REQUIRED_LEVEL = Config.GM_MIN;
 
@@ -57,11 +57,6 @@ public class AdminMobGroup implements IAdminCommandHandler
 			showMainPage(activeChar,command);
 			return true;
 		}
-		else if (command.equals("admin_mobinst"))
-		{
-			showMainPage(activeChar,command);
-			return true;
-		}
 		else if (command.equals("admin_mobgroup_list"))
 			showGroupList(activeChar);
 		else if (command.startsWith("admin_mobgroup_create"))
@@ -111,8 +106,6 @@ public class AdminMobGroup implements IAdminCommandHandler
 	private void showMainPage(L2PcInstance activeChar, String command)
 	{
 		String filename = "mobgroup.htm";
-		if (command.contains("mobinst"))
-			filename = "mobgrouphelp.htm";
 		AdminHelpPage.showHelpPage(activeChar, filename);
 	}