diff --git a/Nibriboard/RippleSpace/Chunk.cs b/Nibriboard/RippleSpace/Chunk.cs index 8400577..fee4be8 100644 --- a/Nibriboard/RippleSpace/Chunk.cs +++ b/Nibriboard/RippleSpace/Chunk.cs @@ -62,7 +62,7 @@ namespace Nibriboard.RippleSpace /// /// Fired when this chunk is updated. /// - public event ChunkUpdateEvent ChunkUpdateEvent; + public event ChunkUpdateEvent OnChunkUpdate; /// /// The time at which this chunk was loaded. /// @@ -177,7 +177,7 @@ namespace Nibriboard.RippleSpace i++; } - ChunkUpdateEvent(this, new ChunkUpdateEventArgs() { UpdateType = ChunkUpdateType.Addition }); + OnChunkUpdate(this, new ChunkUpdateEventArgs() { UpdateType = ChunkUpdateType.Addition }); } public IEnumerator GetEnumerator()