| 1156 | } |
| 1157 | |
| 1158 | void AddPurifyingFountain(int i) |
| 1159 | { |
| 1160 | int ox, oy; |
| 1161 | |
| 1162 | ox = object[i]._ox; |
| 1163 | oy = object[i]._oy; |
| 1164 | dObject[ox][oy - 1] = -1 - i; |
| 1165 | dObject[ox - 1][oy] = -1 - i; |
| 1166 | dObject[ox - 1][oy - 1] = -1 - i; |
| 1167 | object[i]._oRndSeed = GetRndSeed(); |
| 1168 | } |
| 1169 | |
| 1170 | void AddArmorStand(int i) |
| 1171 | { |
no test coverage detected