(stat ...string)
| 128 | } |
| 129 | |
| 130 | func (w *Worn) StatMod(stat ...string) int { |
| 131 | total := 0 |
| 132 | for _, slot := range AllSlots() { |
| 133 | total += w.Get(slot).StatMod(stat...) |
| 134 | } |
| 135 | return total |
| 136 | } |
| 137 | |
| 138 | func (w *Worn) EnableAll() { |
| 139 | for _, slot := range AllSlots() { |
no test coverage detected