diff options
author | Melanie | 2010-05-23 06:12:40 +0100 |
---|---|---|
committer | Melanie | 2010-05-23 06:12:40 +0100 |
commit | f84f0dbd519b75aebc80fea73a8c4fa09592d4a6 (patch) | |
tree | c0cedf0c8b41769c0b9d790ab612f1ef940b4248 /OpenSim | |
parent | Apply http://opensimulator.org/mantis/view.php?id=4632 (diff) | |
download | opensim-SC_OLD-f84f0dbd519b75aebc80fea73a8c4fa09592d4a6.zip opensim-SC_OLD-f84f0dbd519b75aebc80fea73a8c4fa09592d4a6.tar.gz opensim-SC_OLD-f84f0dbd519b75aebc80fea73a8c4fa09592d4a6.tar.bz2 opensim-SC_OLD-f84f0dbd519b75aebc80fea73a8c4fa09592d4a6.tar.xz |
Remove an unneeded conditional
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index ad7c3ae..3964b0b 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -1671,8 +1671,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1671 | /// </summary> | 1671 | /// </summary> |
1672 | public void StandUp() | 1672 | public void StandUp() |
1673 | { | 1673 | { |
1674 | if (SitGround) | 1674 | SitGround = false; |
1675 | SitGround = false; | ||
1676 | 1675 | ||
1677 | if (m_parentID != 0) | 1676 | if (m_parentID != 0) |
1678 | { | 1677 | { |