Terraria.Netplay.ResetSections C# (CSharp) Method

ResetSections() public static method

public static ResetSections ( ) : void
return void
        public static void ResetSections()
        {
            for (int index1 = 0; index1 < 256; ++index1)
            {
                for (int index2 = 0; index2 < Main.maxSectionsX; ++index2)
                {
                    for (int index3 = 0; index3 < Main.maxSectionsY; ++index3)
                        Netplay.Clients[index1].TileSections[index2, index3] = false;
                }
            }
        }