Increased the flying speed

zircon^2
MW 2007-05-12 10:12:34 +00:00
parent 80d854809e
commit d663dfa3bd
2 changed files with 6 additions and 1 deletions

View File

@ -228,7 +228,7 @@ namespace OpenSim.world
//work out velocity for sim physics system
direc = direc * ((0.03f) * 128f);
if (this._physActor.Flying)
direc *= 2;
direc *= 4;
newVelocity.X = direc.x;
newVelocity.Y = direc.y;

View File

@ -252,6 +252,11 @@ namespace OpenSim.world
remoteClient.OutPacket(outPacket);
}
public void SendFullUpdateToAllClients()
{
}
public void SendTerseUpdateToClient(SimClient RemoteClient)
{