Created
January 28, 2016 13:43
-
-
Save triacontane/15f63fc89bfe141a7267 to your computer and use it in GitHub Desktop.
スペルミス
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Game_Map.prototype.refereshVehicles = function() { | |
this._vehicles.forEach(function(vehicle) { | |
vehicle.refresh(); | |
}); | |
}; | |
Game_Map.prototype.refreshVehicles = function() { | |
this._vehicles.forEach(function(vehicle) { | |
vehicle.refresh(); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
公式スクリプトのスペルミスです。
NG : referesh
OK : refresh