Loads an existing MapDataBase corresponding to the given String id from disk using the MapStorage, instantiating the given Class, or returns null if none such file exists. args: Class to instantiate, String dataid
(Class <? extends WorldSavedData > clazz, String dataID)
| 3611 | * the given Class, or returns null if none such file exists. args: Class to instantiate, String dataid |
| 3612 | */ |
| 3613 | public WorldSavedData loadItemData(Class <? extends WorldSavedData > clazz, String dataID) |
| 3614 | { |
| 3615 | return this.mapStorage.loadData(clazz, dataID); |
| 3616 | } |
| 3617 | |
| 3618 | /** |
| 3619 | * Returns an unique new data id from the MapStorage for the given prefix and saves the idCounts map to the |
no test coverage detected