I'm trying to make a small pop up window with use and discard command. What should I write to grey out "use" for unusable item.
Window_ItemCommand.prototype.makeCommandList = function() {
this.addCommand(use, 'use');
this.addCommand(discard, 'discard');
};
Window_ItemCommand.prototype.makeCommandList = function() {
this.addCommand(use, 'use');
this.addCommand(discard, 'discard');
};
