Commits
Cynthia Yantis authored and md_5 committed 1dff62ae830
198 198 | |
199 199 | /** |
200 200 | * Sets the entity's current fire ticks (ticks before the entity stops |
201 201 | * being on fire). |
202 202 | * |
203 203 | * @param ticks Current ticks remaining |
204 204 | */ |
205 205 | public void setFireTicks(int ticks); |
206 206 | |
207 207 | /** |
208 - | * Gets if the entity has visual fire (it will always appear to be on fire). |
208 + | * Sets if the entity has visual fire (it will always appear to be on fire). |
209 209 | * |
210 210 | * @param fire whether visual fire is enabled |
211 211 | */ |
212 212 | void setVisualFire(boolean fire); |
213 213 | |
214 214 | /** |
215 - | * Sets if the entity has visual fire (it will always appear to be on fire). |
215 + | * Gets if the entity has visual fire (it will always appear to be on fire). |
216 216 | * |
217 217 | * @return whether visual fire is enabled |
218 218 | */ |
219 219 | boolean isVisualFire(); |
220 220 | |
221 221 | /** |
222 222 | * Returns the entity's current freeze ticks (amount of ticks the entity has |
223 223 | * been in powdered snow). |
224 224 | * |
225 225 | * @return int freeze ticks |