Problem description: I was using FA's Dynamic Lighting system, and I seem to have encountered this RTE. I was using the day & night demo.
runtime error: type mismatch: "42x25" + 1
proc name: apply (/light/day_night/apply)
source file: demo.dm,33
Having gone to the problem child, it seems to be this:
for(var/shading/s in range(m.client.view + 1, m))
Can anybody help me fix this? I'm actually confused as to where I should go from here on.
Link: http://www.byond.com/developer/Forum_account/DynamicLighting
You'd probably have to manually handle a one-up increase of the view port, if your client.view doesn't change at all you can just pass "43x26" to the first argument of range() and be set. If it changes, you'll have to parse out the numbers, add to them and stick them back together.