This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
|
namespace xyz.places;
|
|
|
|
link[] places;
|
|
link place;
|
|
link character;
|
|
|
|
restore {
|
|
if(places.empty) {
|
|
for(let i = 0; i < 3; i ++) {
|
|
const place = create('xyz.places.places.forest', {
|
|
world: this
|
|
});
|
|
places.push(place);
|
|
}
|
|
}
|
|
|
|
for(const place of places) {
|
|
place.ping();
|
|
}
|
|
} |