Implement 40250 classic client port

This commit is contained in:
shenlei
2026-09-01 18:49:28 +09:00
parent 2277b1dd60
commit 8f61990a83
481 changed files with 169826 additions and 293 deletions
+13
View File
@@ -0,0 +1,13 @@
# dragon_soul_scope_test —— 40250 当前服务器范围自检。
# 协议层仍保留 ds_refine 兼容 API,但游戏场景不得显示/消费龙魂入口。
extends SceneTree
const GameScene = preload("res://game_scene.gd")
func _init() -> void:
if GameScene.ENABLE_DRAGON_SOUL:
printerr("FAIL: Dragon Soul runtime entry must be disabled for target 40250")
quit(1)
return
print("PASS: dragon_soul_scope_test (runtime entry disabled; protocol compatibility retained)")
quit(0)