mirror of
https://github.com/opensim/opensim.git
synced 2026-07-14 19:55:35 +08:00
"list" becomes "List" in LSL2CSConverter and (f,3) becomes (f,0) in llRound. Thanks to ChrisD/Gromit for pointing these out.
This commit is contained in:
@@ -163,7 +163,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler
|
||||
|
||||
public int llRound(double f)
|
||||
{
|
||||
return (int) Math.Round(f, 3);
|
||||
return (int) Math.Round(f, 0);
|
||||
}
|
||||
|
||||
//This next group are vector operations involving squaring and square root. ckrinke
|
||||
|
||||
Reference in New Issue
Block a user