Skip to content

Commit

Permalink
Fixed|Heretic: Server defaults to E1M1
Browse files Browse the repository at this point in the history
Another regression due to the switch to 0-based map indices.
  • Loading branch information
skyjake committed Mar 16, 2013
1 parent afc82a2 commit 6206650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/plugins/heretic/src/h_main.c
Expand Up @@ -232,7 +232,7 @@ void H_PreInit(void)
cfg.secretMsg = true;
cfg.netJumping = true;
cfg.netEpisode = 0;
cfg.netMap = 1;
cfg.netMap = 0;
cfg.netSkill = SM_MEDIUM;
cfg.netColor = 4; // Use the default color by default.
cfg.netMobDamageModifier = 1;
Expand Down

0 comments on commit 6206650

Please sign in to comment.