万华镜事件中,升级奇迹球之后可以新建戴森球。但是目前版本存在bug导致奇迹球升级成功后无法再次建造戴森球。原因如下:
在原版文件中,奇迹球升级成功后会产生如下代码:
remove_country_flag = can_build_disco_sphere
remove_country_flag = built_dyson_sphere
remove_country_flag = built_dyson_sphere_contingency
其中23行意思就是可以让你建造下一个戴森球。但是,新版本戴森球由戴森云升级而成,所以导致flag代码不一致。修正办法是在这三行代码下面再加两行代码:
remove_country_flag = built_dyson_sphere_contingency_swarm
remove_country_flag = built_dyson_sphere_swarm
这样一来就可以正常建造新的戴森球。
在原版文件中,奇迹球升级成功后会产生如下代码:
remove_country_flag = can_build_disco_sphere
remove_country_flag = built_dyson_sphere
remove_country_flag = built_dyson_sphere_contingency
其中23行意思就是可以让你建造下一个戴森球。但是,新版本戴森球由戴森云升级而成,所以导致flag代码不一致。修正办法是在这三行代码下面再加两行代码:
remove_country_flag = built_dyson_sphere_contingency_swarm
remove_country_flag = built_dyson_sphere_swarm
这样一来就可以正常建造新的戴森球。