style: gofmt realignment across channelserver

This commit is contained in:
Houmgaor
2026-04-06 19:33:32 +02:00
parent e48d33ca76
commit 803996adac
10 changed files with 51 additions and 55 deletions

View File

@@ -33,7 +33,6 @@ func TestParseSmallNotImplemented(t *testing.T) {
{"MsgMhfStampcardPrize", &MsgMhfStampcardPrize{}},
{"MsgMhfUpdateForceGuildRank", &MsgMhfUpdateForceGuildRank{}},
// SYS packets - NOT IMPLEMENTED
{"MsgSysAuthData", &MsgSysAuthData{}},
{"MsgSysAuthQuery", &MsgSysAuthQuery{}},

View File

@@ -45,7 +45,6 @@ func handleMsgMhfEnumeratePrice(s *Session, p mhfpacket.MHFPacket) {
doAckBufSucceed(s, pkt.AckHandle, bf.Data())
}
func handleMsgMhfGetExtraInfo(s *Session, p mhfpacket.MHFPacket) {
pkt := p.(*mhfpacket.MsgMhfGetExtraInfo)
// TODO: response structure unknown; fail ACK prevents softlock without misleading client

View File

@@ -734,7 +734,6 @@ func getTuneValueRange(start uint16, value uint16) []tuneValue {
return tv
}
func handleMsgMhfGetUdBonusQuestInfo(s *Session, p mhfpacket.MHFPacket) {
pkt := p.(*mhfpacket.MsgMhfGetUdBonusQuestInfo)

View File

@@ -469,4 +469,3 @@ func scenarioEncodeShiftJIS(s string) ([]byte, error) {
}
return append(out, 0x00), nil
}

View File

@@ -10,8 +10,8 @@ import (
"testing"
"time"
cfg "erupe-ce/config"
"erupe-ce/common/decryption"
cfg "erupe-ce/config"
"erupe-ce/network/clientctx"
"erupe-ce/network/mhfpacket"