This commit is contained in:
meixiongfeng 2023-08-02 17:39:30 +08:00
commit 35b050eb2c
2 changed files with 2 additions and 3 deletions

View File

@ -199,7 +199,7 @@ func (this *configureComp) getWorldtaskBattleById(confId int32) (conf *cfg.GameW
return return
} else { } else {
if conf, ok = v.(*cfg.GameWorldBattle).GetDataMap()[confId]; !ok { if conf, ok = v.(*cfg.GameWorldBattle).GetDataMap()[confId]; !ok {
err = comm.NewNotFoundConfErr(modulename, gameWorldTask, confId) err = comm.NewNotFoundConfErr(modulename, gameWorldtaskBattle, confId)
this.module.Errorf("err:%v", err) this.module.Errorf("err:%v", err)
return return
} }

View File

@ -58,7 +58,6 @@ import (
"go_dreamfactory/modules/user" "go_dreamfactory/modules/user"
"go_dreamfactory/modules/viking" "go_dreamfactory/modules/viking"
"go_dreamfactory/modules/warorder" "go_dreamfactory/modules/warorder"
"go_dreamfactory/modules/worldtask"
"go_dreamfactory/modules/wtask" "go_dreamfactory/modules/wtask"
"go_dreamfactory/services" "go_dreamfactory/services"
"go_dreamfactory/sys/db" "go_dreamfactory/sys/db"
@ -119,7 +118,7 @@ func main() {
pay.NewModule(), pay.NewModule(),
privilege.NewModule(), privilege.NewModule(),
growtask.NewModule(), growtask.NewModule(),
worldtask.NewModule(), // worldtask.NewModule(),
academy.NewModule(), academy.NewModule(),
reddot.NewModule(), reddot.NewModule(),
combat.NewModule(), combat.NewModule(),