-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSkipActorSelectInMenu.js
43 lines (38 loc) · 1.31 KB
/
SkipActorSelectInMenu.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
34
35
36
37
38
39
40
41
42
43
//=============================================================================
// SkipActorSelectInMenu.js
//=============================================================================
/*:
* @plugindesc Skips actor selection in menu when only 1 actor in party.
* @author Toru Higuruma
*
* @help SkipActorSelectInMenu v1.0 (2017-07-28)
* Copyright (c) 2017 Toru Higuruma
* This plugin is provided under the MIT License.
* https://git.io/tmv
*
* Plugin commands:
* This plugin does not provide plugin commands.
*/
/*:ja
* @plugindesc 1人パーティーのとき、メニュー画面でアクター選択をスキップします。
* @author Toru Higuruma
*
* @help SkipActorSelectInMenu v1.0 (2017-07-28)
* Copyright (c) 2017 Toru Higuruma
* このプラグインは MIT License の下で提供されます。
* https://git.io/tmv
*
* プラグインコマンド:
* このプラグインにプラグインコマンドはありません。
*/
(function() {
var _Scene_Menu_commandPersonal = Scene_Menu.prototype.commandPersonal;
Scene_Menu.prototype.commandPersonal = function() {
if ($gameParty.size() === 1) {
$gameParty.setMenuActor($gameParty.members()[0]);
this.onPersonalOk();
return;
}
_Scene_Menu_commandPersonal.call(this);
};
})();