refactor(common): 重构 Conn 实体并优化地图进入逻辑
- 优化 Conn 实体的 SendPack 方法,提高代码复用性 - 添加 goja 模块到 go.work 文件 - 重构地图进入逻辑,增加玩家广播和刷怪功能 - 调整 OutInfo 结构中的 Vip 和 Viped 字段类型 - 简化 MonsterRefresh 结构体定义
This commit is contained in:
16
common/utils/goja/unistring/string_test.go
Normal file
16
common/utils/goja/unistring/string_test.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package unistring
|
||||
|
||||
import "testing"
|
||||
|
||||
func TestString_AsUtf16(t *testing.T) {
|
||||
const str = "más"
|
||||
s := NewFromString(str)
|
||||
|
||||
if b := s.AsUtf16(); len(b) != 4 || b[0] != BOM {
|
||||
t.Fatal(b)
|
||||
}
|
||||
|
||||
if s.String() != str {
|
||||
t.Fatal(s)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user