From 1452a6b111d84b8a956d7973ff79c792975e9fe8 Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Wed, 25 May 2016 13:32:37 +0000 Subject: [PATCH] Fixed some comments. --- .../gameserver/model/actor/instance/L2PcInstance.java | 1 + .../com/l2jmobius/gameserver/model/drops/CorpseDropItem.java | 4 ++-- .../com/l2jmobius/gameserver/model/drops/DeathDropItem.java | 4 ++-- .../com/l2jmobius/gameserver/model/drops/GeneralDropItem.java | 2 +- .../gameserver/model/drops/GroupedCorpseDropItem.java | 2 +- .../gameserver/model/drops/GroupedDeathDropItem.java | 2 +- .../gameserver/model/drops/GroupedGeneralDropItem.java | 2 +- 7 files changed, 9 insertions(+), 8 deletions(-) diff --git a/trunk/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java b/trunk/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java index 93c23afffd..6067eef248 100644 --- a/trunk/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java +++ b/trunk/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java @@ -1,4 +1,5 @@ /* + * This file is part of the L2J Mobius project. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/trunk/java/com/l2jmobius/gameserver/model/drops/CorpseDropItem.java b/trunk/java/com/l2jmobius/gameserver/model/drops/CorpseDropItem.java index 7b5009acdc..dc4122d2cf 100644 --- a/trunk/java/com/l2jmobius/gameserver/model/drops/CorpseDropItem.java +++ b/trunk/java/com/l2jmobius/gameserver/model/drops/CorpseDropItem.java @@ -36,7 +36,7 @@ public class CorpseDropItem extends GeneralDropItem /* * (non-Javadoc) - * @see com.l2jserver.gameserver.model.drops.GeneralDropItem#getGlobalAmountMultiplier() + * @see com.l2jmobius.gameserver.model.drops.GeneralDropItem#getGlobalAmountMultiplier() */ @Override protected double getGlobalAmountMultiplier(boolean isPremium) @@ -46,7 +46,7 @@ public class CorpseDropItem extends GeneralDropItem /* * (non-Javadoc) - * @see com.l2jserver.gameserver.model.drops.GeneralDropItem#getGlobalChanceMultiplier() + * @see com.l2jmobius.gameserver.model.drops.GeneralDropItem#getGlobalChanceMultiplier() */ @Override protected double getGlobalChanceMultiplier(boolean isPremium) diff --git a/trunk/java/com/l2jmobius/gameserver/model/drops/DeathDropItem.java b/trunk/java/com/l2jmobius/gameserver/model/drops/DeathDropItem.java index f8dda068f3..c0dde948ca 100644 --- a/trunk/java/com/l2jmobius/gameserver/model/drops/DeathDropItem.java +++ b/trunk/java/com/l2jmobius/gameserver/model/drops/DeathDropItem.java @@ -36,7 +36,7 @@ public class DeathDropItem extends GeneralDropItem /* * (non-Javadoc) - * @see com.l2jserver.gameserver.model.drops.GeneralDropItem#getGlobalAmountMultiplier() + * @see com.l2jmobius.gameserver.model.drops.GeneralDropItem#getGlobalAmountMultiplier() */ @Override protected double getGlobalAmountMultiplier(boolean isPremium) @@ -46,7 +46,7 @@ public class DeathDropItem extends GeneralDropItem /* * (non-Javadoc) - * @see com.l2jserver.gameserver.model.drops.GeneralDropItem#getGlobalChanceMultiplier() + * @see com.l2jmobius.gameserver.model.drops.GeneralDropItem#getGlobalChanceMultiplier() */ @Override protected double getGlobalChanceMultiplier(boolean isPremium) diff --git a/trunk/java/com/l2jmobius/gameserver/model/drops/GeneralDropItem.java b/trunk/java/com/l2jmobius/gameserver/model/drops/GeneralDropItem.java index 689fcc05cf..360f8a058f 100644 --- a/trunk/java/com/l2jmobius/gameserver/model/drops/GeneralDropItem.java +++ b/trunk/java/com/l2jmobius/gameserver/model/drops/GeneralDropItem.java @@ -249,7 +249,7 @@ public class GeneralDropItem implements IDropItem /* * (non-Javadoc) - * @see com.l2jserver.gameserver.model.drop.IDropItem#calculateDrops(com.l2jserver.gameserver.model.actor.L2Character, com.l2jserver.gameserver.model.actor.L2Character) + * @see com.l2jmobius.gameserver.model.drop.IDropItem#calculateDrops(com.l2jmobius.gameserver.model.actor.L2Character, com.l2jmobius.gameserver.model.actor.L2Character) */ @Override public Collection calculateDrops(L2Character victim, L2Character killer) diff --git a/trunk/java/com/l2jmobius/gameserver/model/drops/GroupedCorpseDropItem.java b/trunk/java/com/l2jmobius/gameserver/model/drops/GroupedCorpseDropItem.java index 2f737f84b8..e1ae0ecff2 100644 --- a/trunk/java/com/l2jmobius/gameserver/model/drops/GroupedCorpseDropItem.java +++ b/trunk/java/com/l2jmobius/gameserver/model/drops/GroupedCorpseDropItem.java @@ -33,7 +33,7 @@ public class GroupedCorpseDropItem extends GroupedGeneralDropItem /* * (non-Javadoc) - * @see com.l2jserver.gameserver.model.drops.GroupedGeneralDropItem#getGlobalChanceMultiplier() + * @see com.l2jmobius.gameserver.model.drops.GroupedGeneralDropItem#getGlobalChanceMultiplier() */ @Override protected double getGlobalChanceMultiplier() diff --git a/trunk/java/com/l2jmobius/gameserver/model/drops/GroupedDeathDropItem.java b/trunk/java/com/l2jmobius/gameserver/model/drops/GroupedDeathDropItem.java index e1b861cec3..1b539edd3d 100644 --- a/trunk/java/com/l2jmobius/gameserver/model/drops/GroupedDeathDropItem.java +++ b/trunk/java/com/l2jmobius/gameserver/model/drops/GroupedDeathDropItem.java @@ -33,7 +33,7 @@ public class GroupedDeathDropItem extends GroupedGeneralDropItem /* * (non-Javadoc) - * @see com.l2jserver.gameserver.model.drops.GroupedGeneralDropItem#getGlobalChanceMultiplier() + * @see com.l2jmobius.gameserver.model.drops.GroupedGeneralDropItem#getGlobalChanceMultiplier() */ @Override protected double getGlobalChanceMultiplier() diff --git a/trunk/java/com/l2jmobius/gameserver/model/drops/GroupedGeneralDropItem.java b/trunk/java/com/l2jmobius/gameserver/model/drops/GroupedGeneralDropItem.java index dcfbcb66f5..7e884a4f4f 100644 --- a/trunk/java/com/l2jmobius/gameserver/model/drops/GroupedGeneralDropItem.java +++ b/trunk/java/com/l2jmobius/gameserver/model/drops/GroupedGeneralDropItem.java @@ -100,7 +100,7 @@ public class GroupedGeneralDropItem implements IDropItem /* * (non-Javadoc) - * @see com.l2jserver.gameserver.model.drop.IDropItem#calculateDrops(com.l2jserver.gameserver.model.actor.L2Character, com.l2jserver.gameserver.model.actor.L2Character) + * @see com.l2jmobius.gameserver.model.drop.IDropItem#calculateDrops(com.l2jmobius.gameserver.model.actor.L2Character, com.l2jmobius.gameserver.model.actor.L2Character) */ @Override public Collection calculateDrops(L2Character victim, L2Character killer)