mirror of
https://github.com/opensim/opensim.git
synced 2026-07-31 13:55:35 +08:00
Correct casts so that the target id in the at_target event matches the original target id.
Fixes Mantis #2861
This commit is contained in:
@@ -1469,6 +1469,11 @@ namespace OpenSim.Region.ScriptEngine.Shared
|
||||
value = i;
|
||||
}
|
||||
|
||||
public LSLInteger(uint i)
|
||||
{
|
||||
value = (int)i;
|
||||
}
|
||||
|
||||
public LSLInteger(double d)
|
||||
{
|
||||
value = (int)d;
|
||||
|
||||
Reference in New Issue
Block a user