mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-16 17:02:18 +00:00
fix(accessories): add body accessory to user model, fixes #3346
This commit is contained in:
parent
c879f46c07
commit
c441ae418b
1 changed files with 4 additions and 2 deletions
|
|
@ -136,7 +136,8 @@ var UserSchema = new Schema({
|
|||
head: {type: String, 'default': 'head_base_0'},
|
||||
shield: {type: String, 'default': 'shield_base_0'},
|
||||
back: String,
|
||||
headAccessory: String
|
||||
headAccessory: String,
|
||||
body: String
|
||||
},
|
||||
costume: {
|
||||
weapon: {type: String, 'default': 'weapon_base_0'},
|
||||
|
|
@ -144,7 +145,8 @@ var UserSchema = new Schema({
|
|||
head: {type: String, 'default': 'head_base_0'},
|
||||
shield: {type: String, 'default': 'shield_base_0'},
|
||||
back: String,
|
||||
headAccessory: String
|
||||
headAccessory: String,
|
||||
body: String
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue