6 lines
118 B
JavaScript
6 lines
118 B
JavaScript
|
function start(ms) {
|
||
|
var py = ms.getPyramid();
|
||
|
if (py != null) {
|
||
|
py.sendScore(ms.getPlayer());
|
||
|
}
|
||
|
}
|