From 51cb61fb2925447ef9bba6748175881251e191d6 Mon Sep 17 00:00:00 2001 From: Jak Daniels Date: Sat, 3 Jan 2015 10:30:52 +0000 Subject: [PATCH] Allow prim names to have uppercase letters from inworld chat commands --- Module/BirdsModule/FlockingModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Module/BirdsModule/FlockingModule.cs b/Module/BirdsModule/FlockingModule.cs index 3d36c75..ebccb0e 100644 --- a/Module/BirdsModule/FlockingModule.cs +++ b/Module/BirdsModule/FlockingModule.cs @@ -219,7 +219,7 @@ namespace Flocking return; // not for us // try and parse a valid cmd from this msg - string cmd = msg.Message.ToLower (); + string cmd = msg.Message; //.ToLower (); //stick ui in the args so we know to respond in world //bit of a hack - but lets us use CommandDelegate inWorld