diff --git a/S1API/PhoneCalls/CallStageEntry.cs b/S1API/PhoneCalls/CallStageEntry.cs
index c823a7ea..cf3f60a2 100644
--- a/S1API/PhoneCalls/CallStageEntry.cs
+++ b/S1API/PhoneCalls/CallStageEntry.cs
@@ -37,13 +37,13 @@ public class CallStageEntry
///
/// @TODO: Docs
///
- protected readonly List StartTriggerEntries = new List();
+ protected readonly System.Collections.Generic.List StartTriggerEntries = new System.Collections.Generic.List();
// ReSharper disable once MemberCanBePrivate.Global
///
/// @TODO: Docs
///
- protected readonly List DoneTriggerEntries = new List();
+ protected readonly System.Collections.Generic.List DoneTriggerEntries = new System.Collections.Generic.List();
///
/// INTERNAL: Creates a stage entry from an in-game stage instance.
diff --git a/S1API/PhoneCalls/PhoneCallDefinition.cs b/S1API/PhoneCalls/PhoneCallDefinition.cs
index c00de90e..ddb392ab 100644
--- a/S1API/PhoneCalls/PhoneCallDefinition.cs
+++ b/S1API/PhoneCalls/PhoneCallDefinition.cs
@@ -35,7 +35,7 @@ public abstract class PhoneCallDefinition
///
/// A list of all stage entries added to this phone call.
///
- protected readonly List StageEntries = new List();
+ protected readonly System.Collections.Generic.List StageEntries = new System.Collections.Generic.List();
///
/// INTERNAL: Public constructor used for instancing a new
diff --git a/S1API/Quests/Quest.cs b/S1API/Quests/Quest.cs
index b42aa3b6..182c1f2d 100644
--- a/S1API/Quests/Quest.cs
+++ b/S1API/Quests/Quest.cs
@@ -63,7 +63,7 @@ public abstract class Quest : Saveable
///
/// A list of all quest entries added to this quest.
///
- protected readonly List QuestEntries = new List();
+ protected readonly System.Collections.Generic.List QuestEntries = new System.Collections.Generic.List();
[SaveableField("QuestData")]
private readonly QuestData _questData;