UOOutlands / Razor

Razor is a free tool designed to help with simple tasks while playing Ultima Online.
http://www.uor-razor.com
GNU General Public License v3.0
9 stars 6 forks source link

[BUG] Cant `ignore` mobiles #64

Closed ncskrypt closed 3 years ago

ncskrypt commented 3 years ago

Mobiles can't be ignored with the ignore command.

Causes an infinite loop when using while findtype

while findtype (some mobile type) 'ground' as 'found'
  ...

  ignore 'found' // Does not ignore the object if a mobile
endwhile
Tranq1 commented 3 years ago

Technically the ignore part works - it pushes the serial onto the ignore list. When using findtype to try to find mobiles and it retrieves the list, it just doesn't apply any filtering on it like it does on the item list.

anethus commented 3 years ago

https://github.com/UOOutlands/Razor/pull/66