删除不用配置表

This commit is contained in:
meixiongfeng 2022-11-21 12:19:32 +08:00
parent 6e7e13ff1d
commit 1021651e6a

View File

@ -93,7 +93,6 @@ type Tables struct {
VikingBossSkill *GameVikingBossSkill VikingBossSkill *GameVikingBossSkill
LibraryFetter *GameLibraryFetter LibraryFetter *GameLibraryFetter
LibraryStory *GameLibraryStory LibraryStory *GameLibraryStory
FavorNum *GameFavorNum
LibraryHero *GameLibraryHero LibraryHero *GameLibraryHero
LibraryHistory *GameLibraryHistory LibraryHistory *GameLibraryHistory
LibraryFavor *GameLibraryFavor LibraryFavor *GameLibraryFavor
@ -654,12 +653,6 @@ func NewTables(loader JsonLoader) (*Tables, error) {
if tables.LibraryStory, err = NewGameLibraryStory(buf); err != nil { if tables.LibraryStory, err = NewGameLibraryStory(buf); err != nil {
return nil, err return nil, err
} }
if buf, err = loader("game_favornum") ; err != nil {
return nil, err
}
if tables.FavorNum, err = NewGameFavorNum(buf) ; err != nil {
return nil, err
}
if buf, err = loader("game_libraryhero"); err != nil { if buf, err = loader("game_libraryhero"); err != nil {
return nil, err return nil, err
} }