mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 09:45:47 +08:00
Stop OdePrim and OdeCharacter insanely overriding set LocalID to set their own private m_localID property but leaving get to return the then unset PhysicsActor.LocalId!
Instead, just have both subclasses use the PhysicsActor.LocalID property.
This restores collision functionality that fell away in 45c7789 yesterday
This commit is contained in:
@@ -517,7 +517,11 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
public uint LocalId
|
||||
{
|
||||
get { return m_localId; }
|
||||
set { m_localId = value; }
|
||||
set
|
||||
{
|
||||
m_localId = value;
|
||||
// m_log.DebugFormat("[SCENE OBJECT PART]: Set part {0} to local id {1}", Name, m_localId);
|
||||
}
|
||||
}
|
||||
|
||||
public virtual string Name
|
||||
|
||||
Reference in New Issue
Block a user