For some reason my Dreamseeker won't detect a right click, I know it's not because of my computer because it works fine outside of my game (Haven't tested with others) however, it does detect a left click..
Does not work
Click(location,control,params)
..()
sleep(2)
var/list/converted_params = params2list(params)
if("right" in converted_params)
world<<output("Right clicked","output1")
Works
Click(location,control,params)
..()
sleep(2)
var/list/converted_params = params2list(params)
if("left" in converted_params)
world<<output("Left clicked","output1")
BTW may I add that this was working perfectly fine last time I was working with the source, which was some weeks back, maybe even a month.