diff options
Diffstat (limited to 'Assembly_CSharp/_Building/Shrine.cs')
-rw-r--r-- | Assembly_CSharp/_Building/Shrine.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Assembly_CSharp/_Building/Shrine.cs b/Assembly_CSharp/_Building/Shrine.cs new file mode 100644 index 0000000..bbdfd2d --- /dev/null +++ b/Assembly_CSharp/_Building/Shrine.cs @@ -0,0 +1,11 @@ +public class Shrine : SpawnableObject +{ + protected override void Start() + { + base.Start(); + if (spawned) + { + AchievementManager.instance.shrineSpawned = true; + } + } +} |