上传代码修复

This commit is contained in:
liwei1dao 2023-05-23 10:26:54 +08:00
parent 0cf6580c37
commit 27ca07a422
4 changed files with 6567 additions and 83 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
[ [
{ {
"id": 210, "id": 10,
"name": { "name": {
"key": "worldtask_world_all_name_1", "key": "worldtask_world_all_name_1",
"text": "章节1全部任务" "text": "章节1全部任务"

File diff suppressed because it is too large Load Diff

View File

@ -43,11 +43,11 @@ func (this *Caravan) Init(service core.IService, module core.IModule, options co
func (this *Caravan) Start() (err error) { func (this *Caravan) Start() (err error) {
err = this.ModuleBase.Start() err = this.ModuleBase.Start()
var module core.IModule // var module core.IModule
this.mail = module.(comm.Imail) // this.mail = module.(comm.Imail)
if module, err = this.service.GetModule(comm.ModuleChat); err != nil { // if module, err = this.service.GetModule(comm.ModuleChat); err != nil {
return // return
} // }
this.service.RegisterFunctionName(string(comm.Rpc_ModuleCaravanSettlement), this.Rpc_ModuleCaravanSettlement) this.service.RegisterFunctionName(string(comm.Rpc_ModuleCaravanSettlement), this.Rpc_ModuleCaravanSettlement)
return return
} }