Merge branch 'release' into develop

This commit is contained in:
SabreCat
2017-12-01 21:32:28 +00:00
2 changed files with 3 additions and 1 deletions

View File

@@ -24,7 +24,7 @@
span.head_0 span.head_0
span(:class="getGearClass('back_collar')") span(:class="getGearClass('back_collar')")
span(:class="getGearClass('body')") span(:class="getGearClass('body')")
template(v-for="type in ['base', 'bangs', 'mustache', 'beard']") template(v-for="type in ['bangs', 'base', 'mustache', 'beard']")
span(:class="'hair_' + type + '_' + member.preferences.hair[type] + '_' + member.preferences.hair.color") span(:class="'hair_' + type + '_' + member.preferences.hair[type] + '_' + member.preferences.hair.color")
span(:class="getGearClass('eyewear')") span(:class="getGearClass('eyewear')")
span(:class="getGearClass('head')") span(:class="getGearClass('head')")

View File

@@ -311,6 +311,8 @@ export default {
}, },
methods: { methods: {
checkUserAchievements () { checkUserAchievements () {
if (this.user.needsCron) return;
// List of prompts for user on changes. Sounds like we may need a refactor here, but it is clean for now // List of prompts for user on changes. Sounds like we may need a refactor here, but it is clean for now
if (!this.user.flags.welcomed) { if (!this.user.flags.welcomed) {
this.$store.state.avatarEditorOptions.editingUser = false; this.$store.state.avatarEditorOptions.editingUser = false;