Skip to content

Commit 429a9aa

Browse files
committed
Fix ??? in entity names in SGB home system resulting from untranslated content
1 parent 1a90005 commit 429a9aa

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/data/scripts/world/systems/SGB_Detachment_outpost.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ public void generate(SectorAPI sector) {
321321
planet6.getSpec().setCloudColor(new Color(245, 255, 254, 195));
322322

323323
SectorEntityToken STR = system.addCustomEntity("corvus_abandoned_station",
324-
"前哨站", "station_side04", "neutral");
324+
"Aosnit Abandoned Station", "station_side04", "neutral");
325325

326326
STR.setCircularOrbitPointingDown(system.getEntityById("SGB_planet6"), 45, 300, 30);
327327
STR.setCustomDescriptionId("SGB_planet6_platform");
@@ -367,15 +367,15 @@ public void generate(SectorAPI sector) {
367367
planet7.getSpec().setCloudColor(new Color(200, 200, 200, 150));
368368

369369
//为星系生成指定跳跃点
370-
JumpPointAPI jumpPoint = Global.getFactory().createJumpPoint("inside_point", "SGB Jump-point");
370+
JumpPointAPI jumpPoint = Global.getFactory().createJumpPoint("inside_point", "Aosnit Inner-System Jump Point");
371371
OrbitAPI orbit = Global.getFactory().createCircularOrbit(planet1, 0, 1000, 30);
372372
jumpPoint.setOrbit(orbit);
373373
jumpPoint.setRelatedPlanet(planet1);
374374
jumpPoint.setStandardWormholeToHyperspaceVisual();
375375
system.addEntity(jumpPoint);
376376

377377
//为星系生成指定跳跃点
378-
JumpPointAPI jumpPoint2 = Global.getFactory().createJumpPoint("inside_point2", "SGB Jump-point");
378+
JumpPointAPI jumpPoint2 = Global.getFactory().createJumpPoint("inside_point2", "Ougest Gravity Well");
379379
OrbitAPI orbit2 = Global.getFactory().createCircularOrbit(star, 40, 3500, 360);
380380
jumpPoint2.setOrbit(orbit2);
381381
jumpPoint2.setRelatedPlanet(planet1);
@@ -394,19 +394,19 @@ public void generate(SectorAPI sector) {
394394

395395
//生成星门
396396
SectorEntityToken gate = system.addCustomEntity("SGB_gate", // unique id 设置星门id
397-
"星门", // name - if null, defaultName from custom_entities.json will be used 设置你星门的名字
397+
"Aosnit Gate", // name - if null, defaultName from custom_entities.json will be used 设置你星门的名字
398398
"inactive_gate", // type of object, defined in custom_entities.json 设置标签(让系统识别这是个星门)根据custom_entities.json设置
399399
null); // faction
400400

401401

402402
gate.setCircularOrbit(star, 5, 3080f, 350f);
403403

404404
//设置你星系的永久稳定点建筑
405-
SectorEntityToken A = system.addCustomEntity("SGB_A", "中继通讯基座", "comm_relay", "SGB");
405+
SectorEntityToken A = system.addCustomEntity(null,null, "comm_relay", "SGB");
406406
A.setCircularOrbit(star, 180f, 2900f, 365f);
407-
SectorEntityToken B = system.addCustomEntity("SGB_B", "中继导航浮标", "nav_buoy", "SGB");
407+
SectorEntityToken B = system.addCustomEntity(null,null, "nav_buoy", "SGB");
408408
B.setCircularOrbit(star, 220f, 2500f, 365f);
409-
SectorEntityToken C = system.addCustomEntity("SGB_C", "中继传感器阵列", "sensor_array", "SGB");
409+
SectorEntityToken C = system.addCustomEntity(null,null, "sensor_array", "SGB");
410410
C.setCircularOrbit(star, 240f, 2900f, 365f);
411411

412412
}

0 commit comments

Comments
 (0)