Ignore:
Timestamp:
Dec 14, 2016, 7:47:05 PM (8 years ago)
Author:
alloc
Message:

Fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/AllocsCommands/Commands/Give.cs

    r290 r299  
    6868                                                for (int i = 0; i < iv.Attachments.Length; i++) {
    6969                                                        ItemValue att = iv.Attachments[i];
    70                                                         if (att.HasQuality) {
     70                                                        if (att != null && att.HasQuality) {
    7171                                                                att.Quality = quality;
    7272                                                        }
     
    7777                                                for (int i = 0; i < iv.Parts.Length; i++) {
    7878                                                        ItemValue part = iv.Parts[i];
    79                                                         if (part.HasQuality) {
     79                                                        if (part != null && part.HasQuality) {
    8080                                                                part.Quality = quality;
    8181                                                        }
Note: See TracChangeset for help on using the changeset viewer.