blob: 337bb1825e54de4a7942fc1a2c4f17a68607890a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package game
import (
"strings"
"thehouseoficarus/internal/net"
"thehouseoficarus/internal/player"
)
func (g *Game) executeMix(sess *net.Session, args []string, rawInput string) {
g.doMix(sess, strings.Join(args, " "))
}
func (g *Game) doMix(sess *net.Session, input string) {
g.doStationSkill(sess, input, "pharmacy", player.Pharmacy, "last_mix", "Mixing", "mix", "Mix")
}
|