We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 677d4e2 commit f0bfcd5Copy full SHA for f0bfcd5
src/Battle.js
@@ -71,7 +71,6 @@ Battle.prototype._extractGrimoiresByParty = function (parties) {
71
Battle.prototype._extractCharactersById = function (parties) {
72
var idCounters = {};
73
var characters = [];
74
- var self = this;
75
var partyIds = Object.keys(parties);
76
partyIds.forEach(function (partyId) {
77
var members = parties[partyId].members;
@@ -151,7 +150,7 @@ Battle.prototype._checkEndOfBattle = function () {
151
150
function getCommonParty(characters) {
152
// Devuelve la party que todos los personajes tienen en común o null en caso
153
// de que no haya común.
154
-
+
155
}
156
};
157
0 commit comments