make sure units of a team are returned (#6379)

This commit is contained in:
Lanre Adelowo 2019-03-19 22:50:06 +01:00 committed by techknowlogick
parent 359d3ed01d
commit 5c82ef098e
2 changed files with 10 additions and 0 deletions

View file

@ -33,6 +33,11 @@ type Team struct {
Units []*TeamUnit `xorm:"-"`
}
// GetUnits return a list of available units for a team
func (t *Team) GetUnits() error {
return t.getUnits(x)
}
func (t *Team) getUnits(e Engine) (err error) {
if t.Units != nil {
return nil