diff --git a/1.6/1.6/Assemblies/WulaFallenEmpire.dll b/1.6/1.6/Assemblies/WulaFallenEmpire.dll
index 3c37d715..74c0f664 100644
Binary files a/1.6/1.6/Assemblies/WulaFallenEmpire.dll and b/1.6/1.6/Assemblies/WulaFallenEmpire.dll differ
diff --git a/1.6/1.6/Defs/PrefabDefs/WULA_Prefabs.xml b/1.6/1.6/Defs/PrefabDefs/WULA_Prefabs.xml
index 1dfb8e76..7a05ec02 100644
--- a/1.6/1.6/Defs/PrefabDefs/WULA_Prefabs.xml
+++ b/1.6/1.6/Defs/PrefabDefs/WULA_Prefabs.xml
@@ -116,7 +116,7 @@
- (0,0,13,13)
+ (0,0,12,12)
diff --git a/1.6/1.6/Defs/ThingDefs_Buildings/WULA_Prefab_Beacons.xml b/1.6/1.6/Defs/ThingDefs_Buildings/WULA_Prefab_Beacons.xml
index 3e91ea57..d6590f04 100644
--- a/1.6/1.6/Defs/ThingDefs_Buildings/WULA_Prefab_Beacons.xml
+++ b/1.6/1.6/Defs/ThingDefs_Buildings/WULA_Prefab_Beacons.xml
@@ -5,17 +5,17 @@
WULA_Prefab_Incoming
WulaFallenEmpire.Skyfaller_PrefabSpawner
- (1,1)
+ (13,13)
Wula/Building/Linked/WULA_Fortress_Wall_MenuIcon
Graphic_Single
CutoutFlying
- (1,1)
+ (13,13)
Accelerate
Things/Skyfaller/SkyfallerShadowDropPod
- (1, 1)
+ (13, 13)
DropPod_Fall
100
Explosion_Vaporize
@@ -36,19 +36,19 @@
-
-
+
WULA_Prefab_Cleanzone_NewColonyBase_Beacon
一个用于呼叫建筑的信标,用于快速建造一个小型前哨站。
Wula/Building/Linked/WULA_Fortress_Wall_MenuIcon
- MinifiedThing
Normal
- Wula/Building/Linked/WulaWall/WulaWall_Atlas
+ Wula/Building/WULA_Dropping_Building_Cleanzone
Graphic_Multi
- (1,1)
- (73,185,254,155)
+ (13,13)
+
+ false
+
false
false
@@ -71,7 +71,7 @@
1
0
- (1,1)
+ (13,13)
0
1
diff --git a/Source/WulaFallenEmpire/BuildingComp/WULA_SkyfallerCaller/CompSkyfallerCaller.cs b/Source/WulaFallenEmpire/BuildingComp/WULA_SkyfallerCaller/CompSkyfallerCaller.cs
index 44b233c8..cf3215c2 100644
--- a/Source/WulaFallenEmpire/BuildingComp/WULA_SkyfallerCaller/CompSkyfallerCaller.cs
+++ b/Source/WulaFallenEmpire/BuildingComp/WULA_SkyfallerCaller/CompSkyfallerCaller.cs
@@ -416,30 +416,6 @@ namespace WulaFallenEmpire
}
yield return callCommand;
}
-
- if (Props.canAutoCall)
- {
- Command_Toggle toggleAutoCall = new Command_Toggle
- {
- defaultLabel = "WULA_ToggleAutoCallSkyfaller".Translate(),
- defaultDesc = "WULA_ToggleAutoCallSkyfallerDesc".Translate(),
- icon = ContentFinder.Get("Wula/UI/Commands/WULA_DropBuilding"),
- isActive = () => WorldComp.AutoCallSkyfaller,
- toggleAction = () =>
- {
- WorldComp.AutoCallSkyfaller = !WorldComp.AutoCallSkyfaller;
- if (WorldComp.AutoCallSkyfaller)
- {
- Messages.Message("WULA_AutoCallEnabled".Translate(), MessageTypeDefOf.PositiveEvent);
- }
- else
- {
- Messages.Message("WULA_AutoCallDisabled".Translate(), MessageTypeDefOf.NegativeEvent);
- }
- }
- };
- yield return toggleAutoCall;
- }
}
private string GetCallDescription()