Fixed frontend tmx parsing for ortho map.

This commit is contained in:
genxium
2022-11-16 22:11:56 +08:00
parent 7b9172c27b
commit 22fb72afbc
113 changed files with 2880 additions and 912 deletions

View File

@@ -252,7 +252,7 @@ func (pR *Room) ChooseStage() error {
}
rand.Seed(time.Now().Unix())
stageNameList := []string{"simple" /* "richsoil" */}
stageNameList := []string{"dungeon" /*"dungeon", "simple", "richsoil" */}
chosenStageIndex := rand.Int() % len(stageNameList) // Hardcoded temporarily. -- YFLu
pR.StageName = stageNameList[chosenStageIndex]