Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
natekomodo committed Jan 2, 2019
1 parent 1b20b40 commit 6ac9ff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WeNeedToModDeeperEngine/ModEngineEvents.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public ModEngineEvents()
public string[] MessageSentV2()
{
var messages = GameObject.FindObjectsOfType<ChatTextColorPicker>();
if (messages == null) return;
if (messages == null) return null;
foreach (var message in messages)
{
var text = message.gameObject.GetComponentInChildren<Text>().text;
Expand Down

0 comments on commit 6ac9ff9

Please sign in to comment.