Go back to text wordbubbles

This commit is contained in:
2014-06-14 10:15:45 -07:00
parent 3d682a161e
commit 60a3f6e9ec

View File

@@ -783,7 +783,7 @@ var AISprite = function(game, x, y, key, frame) {
timer = game.time.create(false); timer = game.time.create(false);
var timerdelta = 20000 + (game.rnd.integerInRange(0, 30) * 1000); var timerdelta = 20000 + (game.rnd.integerInRange(0, 30) * 1000);
console.log("In " + timerdelta + " ms, " + this + " will say something"); console.log("In " + timerdelta + " ms, " + this + " will say something");
timerev = timer.add(, this.setWordBubble, this); timerev = timer.add(timerdelta, this.setWordBubble, this);
timer.start() timer.start()
} }