Attempting to override const variables on objects in the class definition results in a compilation error:
Code Snippet (if applicable) to Reproduce Problem:
/obj/test
var/const/tests = 3
/obj/test/more_tests
tests = 10
test.dm:5:error: tests: re-initialization of global var
Expected Results:
For /obj/test/more_tests to be compiled with tests = 10
Actual Results:
Compilation error.