mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-08 08:23:11 +00:00
@@ -97,11 +97,6 @@ public class L2Character extends Player {
|
||||
*/
|
||||
private Date lastAccess;
|
||||
|
||||
/**
|
||||
* The character stat
|
||||
*/
|
||||
private final CharacterStats stats = new CharacterStats(this);
|
||||
|
||||
/**
|
||||
* The character karma points
|
||||
*/
|
||||
@@ -118,12 +113,16 @@ public class L2Character extends Player {
|
||||
// ////////////////////////////////////
|
||||
// / RUNTIME
|
||||
// ////////////////////////////////////
|
||||
/**
|
||||
* The character stat
|
||||
*/
|
||||
private transient final CharacterStats stats = new CharacterStats(this);
|
||||
/**
|
||||
* The character walk mode.
|
||||
* <p>
|
||||
* This field is not persisted.
|
||||
*/
|
||||
private CharacterMoveType moveType = CharacterMoveType.WALK;
|
||||
private transient CharacterMoveType moveType = CharacterMoveType.WALK;
|
||||
|
||||
/**
|
||||
* The character walking mode
|
||||
@@ -143,11 +142,11 @@ public class L2Character extends Player {
|
||||
/**
|
||||
* The character target, if any.
|
||||
*/
|
||||
private ActorID<?> targetID;
|
||||
private transient ActorID<?> targetID;
|
||||
/**
|
||||
* State of the character. Will be null if it is idle
|
||||
*/
|
||||
private CharacterState state;
|
||||
private transient CharacterState state;
|
||||
|
||||
/**
|
||||
* The valid states for an character
|
||||
@@ -180,7 +179,7 @@ public class L2Character extends Player {
|
||||
/**
|
||||
* The point the player is moving, teleporting etc...
|
||||
*/
|
||||
private Point targetLocation;
|
||||
private transient Point targetLocation;
|
||||
|
||||
/**
|
||||
* Creates a new instance
|
||||
|
||||
Reference in New Issue
Block a user