mirror of
https://github.com/modernuo/ModernUO
synced 2026-08-11 22:23:06 -04:00
**Only one functional change** * Fixes a bug in LogFactory where `Warning` is being logged as `Information` Non-functional changes: * Updates/Fixes copyright headers * Removes namespace scopes for core files. View with [whitespace off](https://github.com/modernuo/ModernUO/pull/1187/files?w=1).
11 lines
146 B
C#
11 lines
146 B
C#
using System;
|
|
|
|
namespace Server.Targeting;
|
|
|
|
[Flags]
|
|
public enum TargetFlags : byte
|
|
{
|
|
None = 0x00,
|
|
Harmful = 0x01,
|
|
Beneficial = 0x02
|
|
}
|