From: MegaBrutal Date: Wed, 3 Oct 2018 18:05:25 +0000 (+0200) Subject: Add method to reset talk count X-Git-Url: http://git.megabrutal.com/?p=wgj58.git;a=commitdiff_plain;h=4d2391f1beff1a3168bc19d05ab2c5913b63d588;hp=1db17bd6327be483e60908d8441ca3ec15296d86 Add method to reset talk count GameNPC.resetTalk(), will be used later. modified: wgj58.js --- diff --git a/wgj58.js b/wgj58.js index 6ec551c..2c503f0 100644 --- a/wgj58.js +++ b/wgj58.js @@ -172,7 +172,7 @@ class GameNPC extends Phaser.Sprite { this.fullname = fullname; this.interaction_distance = interaction_distance; this.interactable = false; - this.talkcount = 0; + this.resetTalk(); this.happy = false; } @@ -218,6 +218,10 @@ class GameNPC extends Phaser.Sprite { return true; } + resetTalk() { + this.talkcount = 0; + } + makeHappy() { this.happy = true; console.log(this.shortname, "is happy!");