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

integration
Robert Adams 2012-06-04 10:26:39 -07:00
parent 729d90173f
commit f94ef37b46
1 changed files with 1 additions and 1 deletions

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
{