character service to /internal

This commit is contained in:
stratic-dev
2024-10-18 00:14:16 +01:00
parent 094855b984
commit d5bb0ac337
7 changed files with 98 additions and 68 deletions

View File

@@ -373,8 +373,20 @@ func (s *Session) DoAckSimpleFail(ackHandle uint32, data []byte) {
})
}
func (s *Session) GetCharID() uint32 {
return s.CharID // Assuming `Session` has a field `CharID`
return s.CharID
}
func (s *Session) GetName() string {
return s.Name // Assuming `Session` has a field `CharID`
return s.Name
}
func (s *Session) Getkqf() []byte {
return s.kqf
}
func (s *Session) GetkqfOverride() bool {
return s.kqfOverride
}
func (s *Session) Setkqf(kqf []byte) {
s.kqf = kqf
}