use of org.blockartistry.mod.DynSurround.client.footsteps.game.system.PFIsolator in project BetterRain by OreCruncher.
the class Footsteps method reloadEverything.
public void reloadEverything() {
this.isolator = new PFIsolator();
final List<IResourcePack> repo = this.dealer.findResourcePacks();
reloadBlockMap(repo);
reloadPrimitiveMap(repo);
reloadAcoustics(repo);
this.isolator.setSolver(new PFSolver(this.isolator));
reloadVariator(repo);
this.isolator.setGenerator(new PFReaderH(this.isolator));
/*
* this.isolator.setGenerator(getConfig().getInteger("custom.stance") ==
* 0 ? new PFReaderH(this.isolator) : new PFReaderQP(this.isolator));
*/
}
Aggregations