Correct the delegate specification in EventManager.TriggerTerrainTainted. Looks like the wrong one was cut and pasted.

This commit is contained in:
Robert Adams
2012-06-04 10:26:39 -07:00
parent 729d90173f
commit f94ef37b46

View File

@@ -923,7 +923,7 @@ namespace OpenSim.Region.Framework.Scenes
OnTerrainTaintedDelegate handlerTerrainTainted = OnTerrainTainted;
if (handlerTerrainTainted != null)
{
foreach (OnTerrainTickDelegate d in handlerTerrainTainted.GetInvocationList())
foreach (OnTerrainTaintedDelegate d in handlerTerrainTainted.GetInvocationList())
{
try
{