Changeset 8630 for trunk/L2J_DataPack/dist/game/data/scripts/handlers/admincommandhandlers/AdminKill.java
- Timestamp:
- Jan 16, 2012 7:56:19 AM (4 months ago)
- Location:
- trunk/L2J_DataPack
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
dist/game/data/scripts/handlers/admincommandhandlers/AdminKill.java (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/L2J_DataPack
- Property svn:mergeinfo changed
/branches/unstable/L2J_DataPack_BETA merged: 8407-8426,8428-8480,8482-8491,8493-8588,8590-8629
- Property svn:mergeinfo changed
-
trunk/L2J_DataPack/dist/game/data/scripts/handlers/admincommandhandlers/AdminKill.java
r7720 r8630 26 26 import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; 27 27 import com.l2jserver.gameserver.network.SystemMessageId; 28 import com.l2jserver.gameserver.network.serverpackets.SystemMessage;29 28 30 29 /** … … 47 46 }; 48 47 48 @Override 49 49 public boolean useAdminCommand(String command, L2PcInstance activeChar) 50 50 { … … 82 82 } 83 83 } 84 else 85 { 86 kill(activeChar, plyr); 87 } 84 kill(activeChar, plyr); 88 85 } 89 86 else … … 114 111 L2Object obj = activeChar.getTarget(); 115 112 if (obj instanceof L2ControllableMobInstance || !(obj instanceof L2Character)) 116 activeChar.sendPacket(SystemMessage .getSystemMessage(SystemMessageId.INCORRECT_TARGET));113 activeChar.sendPacket(SystemMessageId.INCORRECT_TARGET); 117 114 else 118 115 kill(activeChar, (L2Character) obj); … … 152 149 } 153 150 151 @Override 154 152 public String[] getAdminCommandList() 155 153 {
Note: See TracChangeset
for help on using the changeset viewer.
