Loading

Paste #pvwkotkc8

  1. def ottd_display_speed(value, divisor, unit):
  2.     return int(value.value / divisor) * 10 // 16 * unit.ottd_mul >> unit.ottd_shift
  3.  
  4. ->
  5.  
  6. def ottd_display_speed(value, divisor, unit):
  7.     return int(value.value / divisor * 10 / 16 * unit.ottd_mul) >> unit.ottd_shift

Comments