diff options
Diffstat (limited to 'linden/indra')
-rw-r--r-- | linden/indra/newview/app_settings/logcontrol.xml | 1 | ||||
-rw-r--r-- | linden/indra/newview/llvoavatar.cpp | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/linden/indra/newview/app_settings/logcontrol.xml b/linden/indra/newview/app_settings/logcontrol.xml index f92f6ff..cff9a56 100644 --- a/linden/indra/newview/app_settings/logcontrol.xml +++ b/linden/indra/newview/app_settings/logcontrol.xml | |||
@@ -50,6 +50,7 @@ | |||
50 | <!--<string>AppCache</string>--> | 50 | <!--<string>AppCache</string>--> |
51 | <!--<string>APR</string>--> | 51 | <!--<string>APR</string>--> |
52 | <!--<string>AudioEngine</string>--> | 52 | <!--<string>AudioEngine</string>--> |
53 | <!--<string>BodyPhysics</string>--> | ||
53 | <!--<string>InitInfo</string>--> | 54 | <!--<string>InitInfo</string>--> |
54 | <!--<string>isOwnedSelf</string>--> | 55 | <!--<string>isOwnedSelf</string>--> |
55 | <!--<string>HUDEffect</string>--> | 56 | <!--<string>HUDEffect</string>--> |
diff --git a/linden/indra/newview/llvoavatar.cpp b/linden/indra/newview/llvoavatar.cpp index 53962a9..2732d48 100644 --- a/linden/indra/newview/llvoavatar.cpp +++ b/linden/indra/newview/llvoavatar.cpp | |||
@@ -8560,17 +8560,17 @@ void LLVOAvatar::processAvatarAppearance( LLMessageSystem* mesgsys ) | |||
8560 | 8560 | ||
8561 | if(param->getID() == 507 && newWeight != getActualBoobGrav()) | 8561 | if(param->getID() == 507 && newWeight != getActualBoobGrav()) |
8562 | { | 8562 | { |
8563 | llwarns << "Boob Grav SET to " << newWeight << " for " << getFullname() << llendl; | 8563 | LL_DEBUGS("BodyPhysics")<< "Boob Grav SET to " << newWeight << " for " << getFullname() << LL_ENDL; |
8564 | setActualBoobGrav(newWeight); | 8564 | setActualBoobGrav(newWeight); |
8565 | } | 8565 | } |
8566 | if(param->getID() == 795 && newWeight != getActualButtGrav()) | 8566 | if(param->getID() == 795 && newWeight != getActualButtGrav()) |
8567 | { | 8567 | { |
8568 | llwarns << "Butt Grav SET to " << newWeight << " for " << getFullname() << llendl; | 8568 | LL_DEBUGS("BodyPhysics")<< "Butt Grav SET to " << newWeight << " for " << getFullname() << LL_ENDL; |
8569 | setActualButtGrav(newWeight); | 8569 | setActualButtGrav(newWeight); |
8570 | } | 8570 | } |
8571 | if(param->getID() == 157 && newWeight != getActualFatGrav()) | 8571 | if(param->getID() == 157 && newWeight != getActualFatGrav()) |
8572 | { | 8572 | { |
8573 | llwarns << "Fat Grav SET to " << newWeight << " for " << getFullname() << llendl; | 8573 | LL_DEBUGS("BodyPhysics")<< "Fat Grav SET to " << newWeight << " for " << getFullname() << LL_ENDL; |
8574 | setActualFatGrav(newWeight); | 8574 | setActualFatGrav(newWeight); |
8575 | } | 8575 | } |
8576 | 8576 | ||