You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/de/bluecolored/bluemap/api/BlueMapMap.java
+7-16Lines changed: 7 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -86,16 +86,6 @@ public interface BlueMapMap {
86
86
*/
87
87
Vector2igetTileOffset();
88
88
89
-
/**
90
-
* <p>Sets a filter that determines if a specific (hires) tile of this map should be updated or not.
91
-
* If this filter returns false for a tile, the "render"-process of this tile will be cancelled and the tile will be left untouched.</p>
92
-
* <p><b>Warning:</b> Using this method will harm the integrity of the map! Since BlueMap will still assume that the tile got updated properly.</p>
93
-
* <p>Any previously set filters will get overwritten with the new one. You can get the current filter using {@link #getTileFilter()} and combine them if you wish.</p>
94
-
* @param filter The filter that will be used from now on.
95
-
*/
96
-
@ApiStatus.Experimental
97
-
voidsetTileFilter(Predicate<Vector2i> filter);
98
-
99
89
/**
100
90
* Freezes or unfreezes the map in the same way the `/bluemap freeze` command does.
101
91
* BlueMap will no longer attempt to update this map if it is frozen.
@@ -109,12 +99,6 @@ public interface BlueMapMap {
109
99
*/
110
100
booleanisFrozen();
111
101
112
-
/**
113
-
* Returns the currently set TileFilter. The default TileFilter is equivalent to <code>t -> true</code>.
114
-
*/
115
-
@ApiStatus.Experimental
116
-
Predicate<Vector2i> getTileFilter();
117
-
118
102
/**
119
103
* Converts a block-position to a map-tile-coordinate for this map
0 commit comments