mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 06:37:23 +01:00
NPC style should apply to tier $800 only (#11797)
- Fix wrong level field - Check if tier is 800 everywhere
This commit is contained in:
@@ -92,10 +92,11 @@ export default {
|
||||
},
|
||||
isNPC () {
|
||||
if (this.backer) {
|
||||
return this.backer.tier;
|
||||
return this.backer.tier === 800;
|
||||
} if (this.user && this.user.backer) {
|
||||
return this.user.backer.tier;
|
||||
return this.user.backer.tier === 800;
|
||||
}
|
||||
|
||||
return false;
|
||||
},
|
||||
id () {
|
||||
|
||||
Reference in New Issue
Block a user