Skip to content

Commit

Permalink
[Updated] More Const
Browse files Browse the repository at this point in the history
  • Loading branch information
Thrax989 authored Jan 29, 2023
1 parent c4fd7b4 commit be6b413
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2642,10 +2642,10 @@ bool PlayerObjectImplementation::hasBhTef() const {
return !lastBhPvpCombatActionTimestamp.isPast();
}

bool PlayerObjectImplementation::hasJediTef() {
bool PlayerObjectImplementation::hasJediTef() const {
return !lastJediPvpCombatActionTimestamp.isPast();
}
bool PlayerObjectImplementation::isJediAttackable() {
bool PlayerObjectImplementation::isJediAttackable() const {
return !lastJediAttackableTimestamp.isPast();
}

Expand Down

0 comments on commit be6b413

Please sign in to comment.