OpenMinecraft.ShittyLighter.DoSkyLighting C# (CSharp) Method

DoSkyLighting() public method

public DoSkyLighting ( IMapHandler _mh, long X, long Y ) : void
_mh IMapHandler
X long
Y long
return void
        public override void DoSkyLighting(IMapHandler _mh, long X, long Y)
        {
            Chunk c = _mh.GetChunk(X, Y);
            if (c == null) return;
            this.DoSkylighting(c);
        }