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

Fixes

Location:
binary-improvements/AllocsCommands
Files:
2 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                                                        }
  • binary-improvements/AllocsCommands/ModInfo.xml

    r297 r299  
    55                <Description value="Additional commands for server operation" />
    66                <Author value="Christian 'Alloc' Illy" />
    7                 <Version value="11" />
     7                <Version value="12" />
    88                <Website value="http://7dtd.illy.bz" />
    99        </ModInfo>
Note: See TracChangeset for help on using the changeset viewer.