Mercurial > mm7
comparison Level/Decoration.cpp @ 1492:480b09200f88
Fix typos in comments.
author | yoctozepto |
---|---|
date | Fri, 30 Aug 2013 21:59:09 +0200 |
parents | 6d21ef91cb2d |
children | 990fadbaac18 |
comparison
equal
deleted
inserted
replaced
1491:6d21ef91cb2d | 1492:480b09200f88 |
---|---|
90 | 90 |
91 case 206: return 162 + rand() % 7; // dec60 | 91 case 206: return 162 + rand() % 7; // dec60 |
92 case 207: return 169 + rand() % 7; // dec61 | 92 case 207: return 169 + rand() % 7; // dec61 |
93 case 208: return 176 + rand() % 7; // dec62 | 93 case 208: return 176 + rand() % 7; // dec62 |
94 case 209: return 183 + rand() % 7; // dec63 | 94 case 209: return 183 + rand() % 7; // dec63 |
95 case 210: return 150; // dec64 "Magic Pedistal" | 95 case 210: return 150; // dec64 "Magic pedestal" |
96 case 211: return 151; // dec65 "Magic Pedistal" | 96 case 211: return 151; // dec65 "Magic pedestal" |
97 case 212: return 152; // dec66 "Magic Pedistal" | 97 case 212: return 152; // dec66 "Magic pedestal" |
98 case 213: return 153; // dec67 "Magic Pedistal" | 98 case 213: return 153; // dec67 "Magic pedestal" |
99 case 214: return 154; // dec68 "Magic Pedistal" | 99 case 214: return 154; // dec68 "Magic pedestal" |
100 case 215: return 155; // dec69 "Magic Pedistal" | 100 case 215: return 155; // dec69 "Magic pedestal" |
101 case 216: return 156; // dec70 "Magic Pedistal" | 101 case 216: return 156; // dec70 "Magic pedestal" |
102 case 217: return 157; // dec71 "Magic Pedistal" | 102 case 217: return 157; // dec71 "Magic pedestal" |
103 case 218: return 158; // dec72 "Magic Pedistal" | 103 case 218: return 158; // dec72 "Magic pedestal" |
104 case 219: return 159; // dec73 "Magic Pedistal" | 104 case 219: return 159; // dec73 "Magic pedestal" |
105 case 220: return 160; // dec74 "Magic Pedistal" | 105 case 220: return 160; // dec74 "Magic pedestal" |
106 case 221: return 161; // dec75 "Magic Pedistal" | 106 case 221: return 161; // dec75 "Magic pedestal" |
107 | 107 |
108 case 222: case 223: case 224: | 108 case 222: case 223: case 224: |
109 case 225: case 226: case 227: | 109 case 225: case 226: case 227: |
110 return 0; | 110 return 0; |
111 | 111 |
162 return true; | 162 return true; |
163 } | 163 } |
164 | 164 |
165 if (uDecorationDescID >= 206 && uDecorationDescID <= 209) // lighthouse fire | 165 if (uDecorationDescID >= 206 && uDecorationDescID <= 209) // lighthouse fire |
166 return true; | 166 return true; |
167 if (uDecorationDescID >= 210 && uDecorationDescID <= 221) // magic pedistal | 167 if (uDecorationDescID >= 210 && uDecorationDescID <= 221) // magic pedestal |
168 return true; | 168 return true; |
169 | 169 |
170 return false; | 170 return false; |
171 } | 171 } |