mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-24 03:05:28 +01:00
dfbd69f64e
- Changed format of markers.txt to colon delimited instead of comma (no need to change anything, plugin will read both types and save in the new format) - Added support for warps/homes/spawn from data source (either flatfile or mysql) - Renamed images to be more specific to what they represent (marker = marker.png) for you customizers. - Added fix to mapUpdate to keep marker/player names from conflicting
14 lines
268 B
Java
14 lines
268 B
Java
/* FlatFileSource class wrapper to expose protected properties */
|
|
|
|
import java.util.List;
|
|
|
|
public class DMFlatFileSource extends FlatFileSource {
|
|
public List<Warp> getAllWarps() {
|
|
return this.warps;
|
|
}
|
|
|
|
public List<Warp> getAllHomes() {
|
|
return this.homes;
|
|
}
|
|
}
|