ID:1793175
 
BYOND Version:507
Operating System:Windows 7 Pro 64-bit
Web Browser:Chrome 40.0.2214.115
Applies to:Webclient
Status: Verified

A member of our crack team of bug testers has verified that this issue is reproducible, and has handed it off to the development team for investigation.
Descriptive Problem Summary:
Verbs get mistaken for close verbs in webclient

Numbered Steps to Reproduce Problem:
Follow the code snippet

Code Snippet (if applicable) to Reproduce Problem:
mob/verb/New_Test()
src << "New"

mob/verb/Load_Test()
src << "Load"

mob/verb/Test()
src << "Test"


Expected Results:
Test runs "Test".

Actual Results:
Clicking Test actually runs New_Test().

Workarounds:
Rename the verb to something not close to the others.
Lummox JR changed status to 'Verified'
Lummox, when you fix this you may or may not want to remember how it is fixed. I have a feeling it will be slightly related to how a different bug can be fixed. I think I previously submitted it as a bug. But, since I failed to explain it well (it is very confusing by itself anyways), it was labeled unverified I believe.

If I can find it, I'll try explaining again. If not, I will try producing a well-detailed example.
Part of the problem on this stems from the server-side parser not sorting verbs the way DS does, by closeness to the given text. (DS uses a solution I consider pretty bad, so I'm looking for a better way.)