forked from OpenNeo/impress
always include state in wardrobe url, even if it's the default
Mostly this was because of Mac's bug where you, in Firefox: 1. Load a real pet with the default appearance (probs Happy Male) into the wardrobe 2. Use a search query containing ":" 3. See the pet biology vanish before your eyes! I observed that this only happened in cases where the biology stuff in the URL wasn't replaced by a state number, so figured that it'd probably be good to do that anyway because biology fields are annoying, and it for some reason seemed to fix the bug. (Something to do with query parsing and stupid internal state issues, probably. Ugh. One of these days, I'll re-rewrite all this :P)
This commit is contained in:
parent
b0fc2df8b6
commit
58c9d6cfab
1 changed files with 1 additions and 1 deletions
|
@ -375,7 +375,7 @@ View.Hash = function (wardrobe) {
|
|||
|
||||
singleOutfitResponse('updatePetState', function (pet_state) {
|
||||
var pet_type = wardrobe.outfits.getPetType();
|
||||
if(pet_state.id != data.state && pet_type && (data.state || pet_state.id != pet_type.pet_states[0].id)) {
|
||||
if(pet_state.id != data.state && pet_type) {
|
||||
changeQuery({biology: undefined, state: pet_state.id});
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue