14 lines
493 B
GDScript
14 lines
493 B
GDScript
# 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)
|