1
0
Fork 0

[server] Correct name of handleChunkUpdate() method

This commit is contained in:
Starbeamrainbowlabs 2017-04-23 17:41:15 +01:00
parent 27390a33b8
commit 5914ee6d56
1 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@ namespace Nibriboard.RippleSpace
// return it fast.
string chunkFilePath = Path.Combine(StorageDirectory, chunkLocation.AsFilename());
Chunk loadedChunk = await Chunk.FromFile(this, chunkFilePath);
loadedChunk.OnChunkUpdate += HandleChunkUpdate;
loadedChunk.OnChunkUpdate += handleChunkUpdate;
loadedChunkspace.Add(chunkLocation, loadedChunk);
return loadedChunk;
@ -176,7 +176,7 @@ namespace Nibriboard.RippleSpace
/// </summary>
/// <param name="sender">The chunk responsible for the update.</param>
/// <param name="eventArgs">The event arguments associated with the chunk update.</param>
protected void HandleChunkUpdate(object sender, ChunkUpdateEventArgs eventArgs)
protected void handleChunkUpdate(object sender, ChunkUpdateEventArgs eventArgs)
{
// Make the chunk update bubble up to plane-level
OnChunkUpdate(sender, eventArgs);