mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-21 06:49:35 +02:00
remove console logs
This commit is contained in:
parent
d382e2747f
commit
507876b634
@ -2595,7 +2595,6 @@ export default class BattleScene extends SceneBase {
|
|||||||
if (target.isPlayer()) {
|
if (target.isPlayer()) {
|
||||||
this.addModifier(newItemModifier, ignoreUpdate, playSound, false, instant).then(() => {
|
this.addModifier(newItemModifier, ignoreUpdate, playSound, false, instant).then(() => {
|
||||||
if (source) {
|
if (source) {
|
||||||
console.log("Add Modifier, Player", source.name);
|
|
||||||
applyPostItemLostAbAttrs(PostItemLostAbAttr, source, source.hasPassive(), false, []);
|
applyPostItemLostAbAttrs(PostItemLostAbAttr, source, source.hasPassive(), false, []);
|
||||||
}
|
}
|
||||||
resolve(true);
|
resolve(true);
|
||||||
@ -2603,7 +2602,6 @@ export default class BattleScene extends SceneBase {
|
|||||||
} else {
|
} else {
|
||||||
this.addEnemyModifier(newItemModifier, ignoreUpdate, instant).then(() => {
|
this.addEnemyModifier(newItemModifier, ignoreUpdate, instant).then(() => {
|
||||||
if (source) {
|
if (source) {
|
||||||
console.log("Add Modifier, ENEMY", source.name);
|
|
||||||
applyPostItemLostAbAttrs(PostItemLostAbAttr, source, source.hasPassive(), false, []);
|
applyPostItemLostAbAttrs(PostItemLostAbAttr, source, source.hasPassive(), false, []);
|
||||||
}
|
}
|
||||||
resolve(true);
|
resolve(true);
|
||||||
|
Loading…
Reference in New Issue
Block a user