--- deliantra/server/ext/map-random.ext 2008/05/03 08:50:30 1.24 +++ deliantra/server/ext/map-random.ext 2008/05/03 15:17:13 1.25 @@ -98,5 +98,18 @@ }; } +# prefetch test, load some ocean-maps +if (0) { + cf::async { + # 0.58 + Coro::Timer::sleep 2; + for my $x (200..219) { + for my $y (200..219) { + (cf::map::find "/world/world_$x\_$y")->load; + } + } + }; +} + 1