Изменения от Главреда ГитЖС | Changes of GitJS Glavred
This commit is contained in:
@@ -50,8 +50,8 @@
|
||||
|
||||
позицияИндексаФишки = (индекс) =>
|
||||
{
|
||||
const x = индекс / 1000000;
|
||||
const y = (индекс - x * 1000000) / 1000;
|
||||
const x = Math.round(индекс / 1000000);
|
||||
const y = Math.round((индекс - x * 1000000) / 1000);
|
||||
const z = индекс - x * 1000000 - y * 1000;
|
||||
return [x, y, z];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user