Talk:Anvil
Jump to navigation
Jump to search
You say the golden anvil is calculated with 1 / (100 * 1 / (1 + minuteTimer / 20)). I'm not saying it's wrong, just that this is quite the number of operators when you can just use (1 + minuteTimer / 20) / 100. It's equivalent and use less operators. I just reversed the operations knowing a/(b/c) <=> ac/b and a/bc <=> a/b * 1/c