コード例 #1
0
 public static void askClearAllStructures()
 {
     if (Provider.isServer)
     {
         for (byte b = 0; b < Regions.WORLD_SIZE; b += 1)
         {
             for (byte b2 = 0; b2 < Regions.WORLD_SIZE; b2 += 1)
             {
                 StructureManager.askClearRegionStructures(b, b2);
             }
         }
     }
 }