forked from triacontane/RPGMakerMV
-
Notifications
You must be signed in to change notification settings - Fork 2
/
BugFixWebPlayTest.js
33 lines (30 loc) · 1.23 KB
/
BugFixWebPlayTest.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//=============================================================================
// BugFixWebPlayTest.js
// ----------------------------------------------------------------------------
// Version
// 1.0.0 2016/02/14 初版
// ----------------------------------------------------------------------------
// [Blog] : http://triacontane.blogspot.jp/
// [Twitter]: https://twitter.com/triacontane/
// [GitHub] : https://github.com/triacontane/
//=============================================================================
/*:
* @plugindesc Web実行のテストプレー防止プラグイン
* @author トリアコンタン
*
* @help Web実行時にURLに?testと入力して実行することで
* 誰でもテストプレーできてしまう問題を修正
*
* このプラグインにはプラグインコマンドはありません。
*
* 利用規約:
* バグ修正プラグインにつき規約なしの無条件でご利用頂けます。
*/
(function () {
'use strict';
var _Game_Temp_initialize = Game_Temp.prototype.initialize;
Game_Temp.prototype.initialize = function() {
_Game_Temp_initialize.apply(this, arguments);
this._isPlaytest = Utils.isOptionValid('test') && Utils.isNwjs();
};
})();