Fix crash when Show Hints setting is off

This commit is contained in:
tobspr 2020-05-28 21:58:08 +02:00
parent b2f6e2956c
commit 864c20ce26
3 changed files with 13 additions and 3 deletions

View File

@ -1,4 +1,9 @@
export const CHANGELOG = [
{
version: "1.1.1",
date: "28.05.2020",
entries: ["Fix crash when 'Show Hints' setting was turned on"],
},
{
version: "1.1.0",
date: "28.05.2020",

View File

@ -116,7 +116,10 @@ export class HUDWaypoints extends BaseHUDPart {
})[1];
this.root.camera.downPreHandler.add(this.onMouseDown, this);
this.domAttach = new DynamicDomAttach(this.root, this.hintElement);
if (this.hintElement) {
this.domAttach = new DynamicDomAttach(this.root, this.hintElement);
}
this.root.keyMapper.getBinding(KEYMAPPINGS.ingame.createMarker).add(this.requestCreateMarker, this);
@ -168,7 +171,9 @@ export class HUDWaypoints extends BaseHUDPart {
}
update() {
this.domAttach.update(this.root.camera.getIsMapOverlayActive());
if (this.domAttach) {
this.domAttach.update(this.root.camera.getIsMapOverlayActive());
}
}
findCurrentIntersectedWaypoint() {

View File

@ -1 +1 @@
1.1.0
1.1.1