Cleanup warnings: CS0162, CS0618, CS0649 (#6309)

* Cleanup

* Revert TagHandler for now

* Probably deleting it would be better
This commit is contained in:
B_Kirill
2025-12-02 00:02:25 +10:00
committed by GitHub
parent 465a1fb5bd
commit 3175a6cb2b
2 changed files with 2 additions and 5 deletions

View File

@@ -94,10 +94,6 @@ internal sealed partial class EntityEventBus : IEventBus
/// </summary>
private sealed class EventData
{
/// <summary>
/// <see cref="ComponentEventAttribute"/> set?
/// </summary>
public bool ComponentEvent;
public bool IsOrdered;
public bool OrderingUpToDate;
public ValueList<BroadcastRegistration> BroadcastRegistrations;

View File

@@ -212,8 +212,9 @@ namespace Robust.Shared.GameObjects
_sawmill.Error($"Failed to serialize {compName} component of entity prototype {prototype.ID}. Exception: {e.Message}");
#if !EXCEPTION_TOLERANCE
throw;
#endif
#else
return false;
#endif
}
if (compMapping.AnyExcept(protoMapping))