Ignore:
Timestamp:
Sep 21, 2014, 7:20:16 PM (10 years ago)
Author:
alloc
Message:

fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/CustomCommands/ListItems.cs

    r130 r197  
    2929
    3030                                int n = 0;
    31                                 foreach (ItemBase ib in ItemBase.list) {
    32                                         if (ib.name != null && ib.name.ToLower ().Contains (_params [0].ToLower ())) {
    33                                                 m_Console.SendResult ("    " + ib.name);
     31                                foreach (string s in ItemList.Instance.ItemNames) {
     32                                        if (s.ToLower ().Contains (_params [0].ToLower ())) {
     33                                                m_Console.SendResult ("    " + s);
    3434                                                n++;
    3535                                        }
Note: See TracChangeset for help on using the changeset viewer.