CreativeControl Problem

Discussion in 'Plugin Development' started by Jnccraft, Jun 2, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    Jnccraft

    Hello i have a server with CreativeControl on.
    I have 2 worlds a SurvivalWorld and a CreativeWorld.
    But my server crashes, and it's annoying that it crashes up to 5 times a day.
    I get this error.
    http://pastebin.com/LHByT1d7
    And i keeps doing it, i think that is the plugin which is crashing my server.
    Please tell me how to fix this, and is it this which is crashing the server.
    P.S i get this error too.
    2012-06-02 21:44:46 [SEVERE] java.lang.ArrayIndexOutOfBoundsException
    2012-06-02 21:44:46 [SEVERE] java.lang.ArrayIndexOutOfBoundsException
    2012-06-02 21:44:46 [SEVERE] java.lang.ArrayIndexOutOfBoundsException
    From
    Nicolai
     
  2. If it isn't your plugin, the you'd probably contact the create of that plugin, since he should know how his plugin works and not the community devs.
    If that isn't the case and it's yours, then you probably to access and index that is not available e.g.
    Code:
    String[] array = new String[2]; //Creating an array with size 2
     
    System.out.println(array[0]); //Does work since it's the first index
    System.out.println(array[1]); //Does work since it's the second one
    System.out.println(array[2]); //Won't work since we declared it with a size of 2 not 3
     
Thread Status:
Not open for further replies.

Share This Page