4 lines
156 B
JavaScript
4 lines
156 B
JavaScript
Scene_Map.prototype.startFlashForEncounter = function(duration) {
|
|
const color = [255, 255, 255, 0];
|
|
$gameScreen.startFlash(color, duration);
|
|
};
|