()
| 54 | } |
| 55 | |
| 56 | func (m *newbieGuideModule) maximumPlayerLevel() int { |
| 57 | if v, ok := m.plug.Config.Get(`MaximumPlayerLevel`).(int); ok && v > 0 { |
| 58 | return v |
| 59 | } |
| 60 | return 5 |
| 61 | } |
| 62 | |
| 63 | func (m *newbieGuideModule) spawnGuide(e events.Event) events.ListenerReturn { |
| 64 |
no test coverage detected