Update Improve-Maps-in-item-frames patch
This commit is contained in:
@@ -1,16 +1,11 @@
|
||||
package org.bukkit.craftbukkit.map;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import org.bukkit.map.MapCursor;
|
||||
|
||||
public class RenderData {
|
||||
|
||||
public byte[] buffer;
|
||||
public final ArrayList<MapCursor> cursors;
|
||||
|
||||
public RenderData() {
|
||||
this.buffer = new byte[128 * 128];
|
||||
this.cursors = new ArrayList<MapCursor>();
|
||||
}
|
||||
|
||||
public final List<MapCursor> cursors = new ArrayList<>();
|
||||
public byte[] buffer = new byte[128 * 128];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user