* Several functions should now be more efficient with sending packets to the client (at the expense of some server CPU while editing)
parent
2760378f7a
commit
aa704172d1
|
@ -74,8 +74,6 @@ namespace libTerrain
|
|||
|
||||
public void Set(int x, int y, double val)
|
||||
{
|
||||
SetDiff(x, y);
|
||||
|
||||
if (x >= w)
|
||||
throw new Exception("Bounds error while setting pixel (width)");
|
||||
if (y >= h)
|
||||
|
@ -85,8 +83,13 @@ namespace libTerrain
|
|||
if (y < 0)
|
||||
throw new Exception("Bounds error while setting pixel (height)");
|
||||
|
||||
if (map[x, y] != val)
|
||||
{
|
||||
SetDiff(x, y);
|
||||
|
||||
map[x, y] = val;
|
||||
}
|
||||
}
|
||||
|
||||
public void SetClip(int x, int y, double val)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue