mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-02 03:15:52 -04:00
See extended for update notes...
- Fixed issue where player couldn't stop watching an ent. Dev info: ConnectionService:disconnect(): Error disconnecting client. java.lang.NullPointerException at resources.objects.creature.CreatureObject.setPerformanceWatchee(CreatureObject.java:1076)
This commit is contained in:
@@ -1073,7 +1073,7 @@ public class CreatureObject extends TangibleObject implements IPersistent {
|
||||
this.performanceWatchee = performanceWatchee;
|
||||
}
|
||||
|
||||
setListenToId(performanceWatchee.getObjectID());
|
||||
setListenToId((performanceWatchee == null) ? 0L : performanceWatchee.getObjectID());
|
||||
}
|
||||
|
||||
public CreatureObject getPerformanceListenee() {
|
||||
|
||||
Reference in New Issue
Block a user