HyCodeYourTale
classpublicPriority 3

GetChunkFlags

com.hypixel.hytale.server.core.universe.world.storage.GetChunkFlags

0

Methods

0

Public Methods

0

Fields

1

Constructors

Constants

intBYPASS_LOADED= 8
intNONE= 0
intNO_GENERATE= 2
intNO_LOAD= 1
intNO_SET_TICKING_SYNC= -2147483648
intPOLL_STILL_NEEDED= 16
intSET_TICKING= 4

Constructors

public
GetChunkFlags()

Source Code

package com.hypixel.hytale.server.core.universe.world.storage;

public class GetChunkFlags {
   public static final int NONE = 0;
   public static final int NO_LOAD = 1;
   public static final int NO_GENERATE = 2;
   public static final int SET_TICKING = 4;
   public static final int BYPASS_LOADED = 8;
   public static final int POLL_STILL_NEEDED = 16;
   public static final int NO_SET_TICKING_SYNC = -2147483648;

   public GetChunkFlags() {
   }
}