From dcc1c47e39d69c09788f2a4aebd4e7b3fdbde429 Mon Sep 17 00:00:00 2001 From: Marc Chapman Date: Wed, 16 Oct 2019 19:22:56 +0100 Subject: [PATCH] typos --- .../game/data/ExampleModule/components/ExampleComponent.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Templates/BaseGame/game/data/ExampleModule/components/ExampleComponent.cs b/Templates/BaseGame/game/data/ExampleModule/components/ExampleComponent.cs index 497b0e41d..5656f5cd5 100644 --- a/Templates/BaseGame/game/data/ExampleModule/components/ExampleComponent.cs +++ b/Templates/BaseGame/game/data/ExampleModule/components/ExampleComponent.cs @@ -4,7 +4,7 @@ function ExampleComponent::onAdd(%this) { } -//onAdd is called when the component is removed and deleted from it's owner entity. +//onRemove is called when the component is removed and deleted from it's owner entity. function ExampleComponent::onRemove(%this) { @@ -15,7 +15,7 @@ function ExampleComponent::onClientConnect(%this, %client) } //onClientDisconnect is called any time a client disconnects from the server. -function ExampleComponent::onClientDisonnect(%this, %client) +function ExampleComponent::onClientDisconnect(%this, %client) { }