When using inputs, the input refuses to acknowledge decimals if the possible inputs contain a whole integer and a decimal of said integer
Code Snippet (if applicable) to Reproduce Problem:
mob/verb/Bug_Test()
var/Egg= input("Choose the multi") in list(1, 1.5)
world<< "[Egg]"
Expected Results:
Egg would say 1.5
Actual Results:
Both options report Egg as 1
Does the problem occur:
Every time? Or how often?Every time
On other computers?Yes
Workarounds: Changing the multiplier of '1' to '0.999', not a desired workaround