You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/DISCUSSION_TEMPLATE/bug-reports.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ body:
73
73
label: Version
74
74
description: Which version of the game did the bug happen in? You can see the current version number in the bottom left corner of your screen in the main menu.
"showsolditems [filter (no-defined/only-min/only-max/name:pattern)] [Include stores (true/false)] [Sold only (true/false)] [limit (number)] [Hide store overrides from output. (true/false)]: "+
15
+
"Lists items and their shop availability settings. Filter can be availability filter or name pattern (e.g. 'name:*rifle*'). Include stores controls whether to check store-specific overrides (default true). Sold only controls whether to show only sold items (default true). Limit parameter controls how many items to show (default 50). Hide store overrides from output, defaults to false.",
NewMessage($"Items: {matchingItems.Count} matching out of {itemsWithPrice.Count()} being sold (showing first {Math.Min(limit,matchingItems.Count)})",Color.LightGreen);
commands.Add(newCommand("eosStat","Query and display all logged in EOS users. Normally this is at most two users, but in a developer environment it could be more.", args =>
commands.Add(newCommand("multiclienttestmode","Makes the client enable some special logic (such as using a client-specific folder for downloads) to prevent conflicts between multiple clients on the same machine. Useful for testing the campaign with multiple clients running locally.",(string[]args)=>
Copy file name to clipboardExpand all lines: Barotrauma/BarotraumaClient/ClientSource/Events/Missions/SalvageMission.cs
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -139,6 +139,8 @@ public override void ClientRead(IReadMessage msg)
139
139
}
140
140
}
141
141
142
-
publicoverrideIEnumerable<Entity>HudIconTargets=>targets.Where(static t =>!t.Retrieved&&t.Item?.GetRootInventoryOwner()is not Character{IsLocalPlayer:true}).Select(static t =>t.Item);
0 commit comments