Implement 40250 classic client port
This commit is contained in:
@@ -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)
|
||||
Reference in New Issue
Block a user