1625 (and most likely 1624) broke call() on object procs with underscores in the name
Numbered Steps to Reproduce Problem:
launch code, press the verb.
Code Snippet (if applicable) to Reproduce Problem:
mob
step_size = 8
verb
testcalls()
var/thing = new /datum/childnest1/childnest2(loc)
call(thing, "dotestcall")()
call(thing, "do_test_call")()
datum
childnest1
childnest2
proc
do_test_call()
world << "do_test_call called"
dotestcall()
world << "dotestcall called"
Expected Results:
dotestcall called
do_test_call called
Actual Results:
dotestcall called
runtime error: undefined proc or verb /datum/childnest1/childnest2/do_test_call().
proc name: testcalls (/mob/verb/testcalls)
works fine on 515.1623