Skip to content

Commit

Permalink
Merge branch 'develop' into feature/action-queue
Browse files Browse the repository at this point in the history
  • Loading branch information
Tynarus committed Apr 20, 2021
2 parents 7ff0593 + c1c07af commit dd6e290
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game-engine/world/actor/player/player.ts
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ export class Player extends Actor {

let showDialogue = false;
let showInConsole = false;
if(typeof options === 'boolean') {
if(options && typeof options === 'boolean') {
showDialogue = true;
} else if(options) {
showDialogue = options.dialogue || false;
Expand Down

0 comments on commit dd6e290

Please sign in to comment.