mc-beta-server/server/Converter.js

3 lines
90 B
JavaScript
Raw Normal View History

2021-08-20 22:42:00 +01:00
module.exports.toAbsoluteInt = function(float = 0.0) {
return Math.round(float * 32.0);
}