Skip to content

Commit

Permalink
- Reldens - v4.0.0 - Commented logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
damian-pastorini committed Dec 3, 2024
1 parent 36d710f commit 4b548d0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/actions/server/pve.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Pve extends Battle
{
//Logger.debug('Running Battle between "'+playerSchema.sessionId+'" and "'+target.id+'".', this.uid);
if(GameConst.STATUS.ACTIVE !== playerSchema.state.inState){
Logger.debug('PvE inactive player.', playerSchema.state.inState);
//Logger.debug('PvE inactive player.', playerSchema.state.inState);
delete this.inBattleWith[target.id];
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/import/server/skills-importer.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class SkillsImporter
skillsData.type = this.skillTypes[skillRawData.typeData.key].id;
if(this.options.update && existentSkill){
await this.updateSkill(existentSkill, skillsData);
Logger.debug('Updated skill: "' + key + '".');
//Logger.debug('Updated skill: "' + key + '".');
return;
}
if(this.options.override && existentSkill){
Expand Down
2 changes: 1 addition & 1 deletion lib/objects/server/object/type/animation-object.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class AnimationObject extends BaseObject
onAction(props)
{
if(!this.runOnAction || !props.room){
Logger.debug('Disabled runOnAction or missing room.');
//Logger.debug('Disabled runOnAction or missing room.');
return;
}
// run for everyone in the room:
Expand Down

0 comments on commit 4b548d0

Please sign in to comment.