This commit is contained in:
2025-09-22 21:50:05 +08:00
parent 8699c4c63e
commit 268ea3c681
7 changed files with 262 additions and 264 deletions

View File

@@ -1,18 +0,0 @@
using RimWorld;
using RimWorld.Planet;
using UnityEngine;
using Verse;
using Verse.AI;
using Verse.Sound;
namespace ArachnaeSwarm
{
public class Verb_LaunchCatastropheMissile : Verb_Shoot
{
// This verb is now only for local defense. The global launch is handled by the Building.
protected override bool TryCastShot()
{
return base.TryCastShot();
}
}
}