ID:1400522
 
(See the best response by Liam Howe.)
Code:
world
fps = 25
icon_size=32
view = "32x17"
New()
spawn(10)RandomMap()
log = "Errors.txt"

world/proc
RandomMap()
if(voted_game == "Free_For_All")
var/rr = pick(1,2)
if(rr==1)
voted_map="test"
if(rr==2)
voted_map="test2"


Problem description:RandomMap doesn't call in world for some reason. I can't figure out why this isn't working.

Simple Question, but is voted_game set to "Free_For_all" when the world starts?
Yep. I double checked that earlier.
Best response
Well I just tried:
world
fps = 25
icon_size=32
view = "32x17"
New()
spawn(10)RandomMap()
log = "Errors.txt"

world/proc
RandomMap()
world << "Proc is being called."
if(voted_game == "Free_For_All")
world << "If is correct."
var/rr = pick(1,2)
if(rr==1)
voted_map="test"
world << "1"
if(rr==2)
voted_map="test2"
world << "2"
world << voted_map


var
voted_game = "Free_For_All"
voted_map = "gdfg"


And it worked fine...
I got it to work like you did, but the second I took away world << "Proc is being called." It stopped working. I had mine as Am I calling for testing, but you get the point.
What are you wanting to happen?
I think I got it to work. Doing further test.