Skip to content

Instantly share code, notes, and snippets.

@triacontane
Created January 28, 2016 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save triacontane/15f63fc89bfe141a7267 to your computer and use it in GitHub Desktop.
Save triacontane/15f63fc89bfe141a7267 to your computer and use it in GitHub Desktop.
スペルミス
Game_Map.prototype.refereshVehicles = function() {
this._vehicles.forEach(function(vehicle) {
vehicle.refresh();
});
};
Game_Map.prototype.refreshVehicles = function() {
this._vehicles.forEach(function(vehicle) {
vehicle.refresh();
});
};
@triacontane
Copy link
Author

公式スクリプトのスペルミスです。
NG : referesh
OK : refresh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment