Changeset 299 for binary-improvements/AllocsCommands
- Timestamp:
- Dec 14, 2016, 7:47:05 PM (8 years ago)
- Location:
- binary-improvements/AllocsCommands
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/AllocsCommands/Commands/Give.cs
r290 r299 68 68 for (int i = 0; i < iv.Attachments.Length; i++) { 69 69 ItemValue att = iv.Attachments[i]; 70 if (att .HasQuality) {70 if (att != null && att.HasQuality) { 71 71 att.Quality = quality; 72 72 } … … 77 77 for (int i = 0; i < iv.Parts.Length; i++) { 78 78 ItemValue part = iv.Parts[i]; 79 if (part .HasQuality) {79 if (part != null && part.HasQuality) { 80 80 part.Quality = quality; 81 81 } -
binary-improvements/AllocsCommands/ModInfo.xml
r297 r299 5 5 <Description value="Additional commands for server operation" /> 6 6 <Author value="Christian 'Alloc' Illy" /> 7 <Version value="1 1" />7 <Version value="12" /> 8 8 <Website value="http://7dtd.illy.bz" /> 9 9 </ModInfo>
Note:
See TracChangeset
for help on using the changeset viewer.