- Timestamp:
- Sep 21, 2014, 7:20:16 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/src/CustomCommands/ListItems.cs
r130 r197 29 29 30 30 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); 34 34 n++; 35 35 }
Note:
See TracChangeset
for help on using the changeset viewer.