Typo in

Monkey Forums/Monkey Bug Reports/Typo in

Perturbatio(Posted 2013) [#1]
modules/brl/native/gametarget.js:

There are a few mentions of this._susended:
BBGame.prototype.SuspendGame=function(){

	if( !this._started || this._susended ) return;

BBGame.prototype.UpdateGame=function(){

	if( !this._started || this._susended ) return;


Should be this.suspended

*edit* dammit, put the path in the comment instead of the title

(using V67f)


therevills(Posted 2013) [#2]
I believe this has already been fixed in v68.

Edit - it has been, but UpdateGame still needs fixing:

BBGame.prototype.UpdateGame=function(){

	if( !this._started || this._susended ) return;