Skip to content

Commit

Permalink
smol fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
BigSpice committed Jan 21, 2024
1 parent 8940f8a commit f7523ba
Show file tree
Hide file tree
Showing 15 changed files with 3 additions and 2 deletions.
Binary file modified VTOL_2.0.0/.vs/ProjectEvaluation/vtol.metadata.v7.bin
Binary file not shown.
Binary file modified VTOL_2.0.0/.vs/ProjectEvaluation/vtol.projects.v7.bin
Binary file not shown.
Binary file modified VTOL_2.0.0/.vs/VTOL/DesignTimeBuild/.dtbcache.v2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified VTOL_2.0.0/.vs/VTOL/v17/.futdcache.v2
Binary file not shown.
2 changes: 1 addition & 1 deletion VTOL_2.0.0/Pages/Page_Mods.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ public async Task Call_Mods_From_Folder()
ToolTip_Dynamic = "The Mod Is not Registered Properly in the Backend List, Please Fix the Mod formatting or update your TF2 Mod List by Launching the Game";
Flag_mod = 100;
}
else if(Verified_Installed_Mod.Has_Valid_Mod == false && !Verified_Installed_Mod.Name.Contains("Northstar") && !Verified_Installed_Mod.Name.Contains("audio"))
else if(Verified_Installed_Mod.Has_Valid_Mod == false && !Verified_Installed_Mod.Name.Contains("Northstar") && !Directory.Exists(Verified_Installed_Mod.DIRECTORY_INFO.FullName + @"\audio") && !Directory.Exists(Verified_Installed_Mod.DIRECTORY_INFO.FullName + @"\vpk"))
{
IS_CORE_MOD_temp = "#c80815";

Expand Down
3 changes: 2 additions & 1 deletion VTOL_2.0.0/Pages/Page_Thunderstore.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
<ComboBoxItem Name="Downloads">Downloads</ComboBoxItem>
<ComboBoxItem Name="Update">Updates</ComboBoxItem>
<ComboBoxItem Name="ReInstall">Installed</ComboBoxItem>
<ComboBoxItem x:Name="Favourites" Content="Favourites"/>
<ComboBoxItem Name="Favourites">Favourites</ComboBoxItem>
<ComboBoxItem Name="Empty">...</ComboBoxItem>

</ComboBox>
<ui:Button x:Name="padd" Content="" VerticalAlignment="Top" Height="35" Padding="0,0,0,0" Icon="ArrowSortDownLines20" BorderBrush="{x:Null}" Width="40" HorizontalAlignment="Right" Margin="0,135,278.3,0" Click="padd_Click" Background="#07FFFFFF" ToolTip="{x:Static properties:Language.Page_Mods_ReverseFilterOrder}" MouseOverBackground="#4CFFFFFF"/>
Expand Down

0 comments on commit f7523ba

Please sign in to comment.