- Removed the ASCII 0x7F control character from safe character lists.
- Added the TraceLockdown command. - Fixed a missing conflicting layer check for FishingPole. - Controlled and summoned creatures are no longer affected by the confusion blast potion effect.
This commit is contained in:
parent
512ab4bfbf
commit
11f84a33cd
8 changed files with 69 additions and 8 deletions
|
|
@ -305,7 +305,7 @@ namespace Server.Engines.MyRunUO
|
|||
{
|
||||
char c = input[i];
|
||||
|
||||
if ( c < 0x20 || c > 0x80 )
|
||||
if ( c < 0x20 || c >= 0x7F )
|
||||
{
|
||||
AppendCharEntity( input, i, ref sb, c );
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue