If we're using GameMaker will we be provided an HTML publishing license like other jams?

For some reason my game over screen won't reset the game. I have in the game object step event:

if(keyboard_check_pressed(vk_enter)) {

switch(room) {

case rStart:

case rEnd:

room_goto(rGame);

break;

}

}

It works for start screen but not end.

Developer's Games