Moved some common utils to gameserver.

This commit is contained in:
MobiusDev
2018-04-07 00:03:03 +00:00
parent 7fcc48a051
commit 0d3fa9f075
52 changed files with 236 additions and 236 deletions

View File

@ -25,7 +25,6 @@ import java.util.List;
import java.util.logging.Logger;
import com.l2jmobius.Config;
import com.l2jmobius.commons.util.MathUtil;
import com.l2jmobius.gameserver.data.xml.impl.DoorData;
import com.l2jmobius.gameserver.geoengine.geodata.ABlock;
import com.l2jmobius.gameserver.geoengine.geodata.BlockComplex;
@ -46,6 +45,7 @@ import com.l2jmobius.gameserver.model.Location;
import com.l2jmobius.gameserver.model.actor.L2Character;
import com.l2jmobius.gameserver.model.actor.instance.L2DoorInstance;
import com.l2jmobius.gameserver.model.instancezone.Instance;
import com.l2jmobius.gameserver.util.MathUtil;
/**
* @author Hasha

View File

@ -34,7 +34,6 @@ import java.util.function.BiPredicate;
import java.util.stream.Stream;
import com.l2jmobius.Config;
import com.l2jmobius.commons.util.MathUtil;
import com.l2jmobius.gameserver.enums.AttributeType;
import com.l2jmobius.gameserver.enums.Position;
import com.l2jmobius.gameserver.model.CharEffectList;
@ -50,6 +49,7 @@ import com.l2jmobius.gameserver.model.stats.Stats;
import com.l2jmobius.gameserver.model.stats.StatsHolder;
import com.l2jmobius.gameserver.model.stats.TraitType;
import com.l2jmobius.gameserver.model.zone.ZoneId;
import com.l2jmobius.gameserver.util.MathUtil;
public class CharStat
{

View File

@ -21,7 +21,6 @@ import java.util.Optional;
import java.util.function.BiFunction;
import java.util.logging.Logger;
import com.l2jmobius.commons.util.MathUtil;
import com.l2jmobius.gameserver.enums.AttributeType;
import com.l2jmobius.gameserver.model.actor.L2Character;
import com.l2jmobius.gameserver.model.stats.finalizers.AttributeFinalizer;
@ -51,6 +50,7 @@ import com.l2jmobius.gameserver.model.stats.finalizers.ShieldDefenceRateFinalize
import com.l2jmobius.gameserver.model.stats.finalizers.ShotsBonusFinalizer;
import com.l2jmobius.gameserver.model.stats.finalizers.SpeedFinalizer;
import com.l2jmobius.gameserver.model.stats.finalizers.VampiricChanceFinalizer;
import com.l2jmobius.gameserver.util.MathUtil;
/**
* Enum of basic stats.

View File

@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.l2jmobius.commons.util;
package com.l2jmobius.gameserver.util;
/**
* @author UnAfraid