Skip to content

Commit

Permalink
Remove custom tech type be unlocked by default
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPurple6411 committed Sep 25, 2023
1 parent 6596dc6 commit f7c8116
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static partial class EnumExtensions
/// <param name="language">The language for this entry. Defaults to English.</param>
/// <param name="unlockAtStart">Whether this instance should be unlocked on game start or not.</param>
/// <returns>A reference to this instance after the operation has completed.</returns>
public static EnumBuilder<TechType> WithPdaInfo(this EnumBuilder<TechType> builder, string displayName, string tooltip, string language = "English", bool unlockAtStart = true)
public static EnumBuilder<TechType> WithPdaInfo(this EnumBuilder<TechType> builder, string displayName, string tooltip, string language = "English", bool unlockAtStart = false)
{
TechType techType = builder;
var name = techType.ToString();
Expand Down

0 comments on commit f7c8116

Please sign in to comment.