Rename www to www.rus

This commit is contained in:
OleSTEEP 2024-01-15 18:35:29 +03:00
parent 8ea7a858d0
commit 7bf44fa645
1878 changed files with 395385 additions and 395385 deletions

View file

@ -1,35 +0,0 @@
//=============================================================================
// TDS Anti Fail Actions
//=============================================================================
/*:
* @plugindesc Prevents failure messages from appearing in certain actions.
*
* @author TDS
*
* @help
*
* Action Note Tags:
*
* <AntiFail>
*
*/
(function() {
//==============================================================================================
// ** Game_Action
//==============================================================================================
// Alias Listing
var tds_AntiFailActions_Game_Action_applyItemUserEffect = Game_Action.prototype.applyItemUserEffect;
//==============================================================================================
// * Apply Item User Effect
//==============================================================================================
Game_Action.prototype.applyItemUserEffect = function(target) {
// Run Original Method
tds_AntiFailActions_Game_Action_applyItemUserEffect.call(this, target);
// If Anti Fail make success
if (this.item().meta.AntiFail) { this.makeSuccess(target) }
};
})();