diff options
author | MW | 2007-04-17 12:25:20 +0000 |
---|---|---|
committer | MW | 2007-04-17 12:25:20 +0000 |
commit | 2180bdf64afa27ecbccf1eed163eec4b2414f87d (patch) | |
tree | ea35db5e9a29890dd4ec891ac12fdc9c73071b00 /OpenSim.RegionServer/SimClient.cs | |
parent | A few fixes and stopped sim crossing being attempted in sandbox mode (diff) | |
download | opensim-SC-2180bdf64afa27ecbccf1eed163eec4b2414f87d.zip opensim-SC-2180bdf64afa27ecbccf1eed163eec4b2414f87d.tar.gz opensim-SC-2180bdf64afa27ecbccf1eed163eec4b2414f87d.tar.bz2 opensim-SC-2180bdf64afa27ecbccf1eed163eec4b2414f87d.tar.xz |
Hopefully undid the murder I committed in the last commit
Diffstat (limited to 'OpenSim.RegionServer/SimClient.cs')
-rw-r--r-- | OpenSim.RegionServer/SimClient.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim.RegionServer/SimClient.cs b/OpenSim.RegionServer/SimClient.cs index b729c6c..0c90dcb 100644 --- a/OpenSim.RegionServer/SimClient.cs +++ b/OpenSim.RegionServer/SimClient.cs | |||
@@ -144,7 +144,9 @@ namespace OpenSim | |||
144 | 144 | ||
145 | public void CrossSimBorder(LLVector3 avatarpos) | 145 | public void CrossSimBorder(LLVector3 avatarpos) |
146 | { // VERY VERY BASIC | 146 | { // VERY VERY BASIC |
147 | LLVector3 newpos = this.m_regionData.RegionLocX; | 147 | |
148 | LLVector3 newpos = avatarpos; | ||
149 | uint neighbourx = this.m_regionData.RegionLocX; | ||
148 | uint neighboury = this.m_regionData.RegionLocY; | 150 | uint neighboury = this.m_regionData.RegionLocY; |
149 | 151 | ||
150 | if (avatarpos.X < 0) | 152 | if (avatarpos.X < 0) |