ID:143934
 
Code:
    Rat_Return
Enter(a)
if(ismob(a))
usr.loc=locate(53,268,1)
usr << "You exit the dark sewers and enter the dark alley."
usr<<sound(null)
sound('Town.mid',repeat=1)


Problem description:

I get the following warning:
RisingEmpire.dm:70:sound :warning: statement has no effect

I have no clue why, but I'd like any help at all.
Who's going to be hearing the sound?
In response to Jon88
...The user of course..?
In response to Michael3131
You need to specify in the code who's going to hear the sound. The reason the error comes up is because, as is, that line doesn't do anything. The sound isn't sent to anyone to hear, or stored in a variable for later.
In response to Jon88
Oh! I completely forgot, I'm supposed to put usr << Infront of it! Sorry 'bout that. Thanks for the help! =D