15 lines
241 B
JavaScript
15 lines
241 B
JavaScript
export default function* ({ecs, other}) {
|
|
if (other.Player) {
|
|
ecs.switchEcs(
|
|
other,
|
|
['homesteads', other.Player.id].join('/'),
|
|
{
|
|
Position: {
|
|
x: 20,
|
|
y: 438,
|
|
},
|
|
},
|
|
);
|
|
}
|
|
}
|