LiquidAtoR
Community Developer
- Joined
- Jan 15, 2010
- Messages
- 1,430
- Reaction score
- 52
Few questions for a change in 1 of my test plugs...
Does this do it correctly (if you can fly you fly, otherwise you ride) and does it automagically use the right mount when called like that?
Or am I making too simple assumptions?
Code:
if (!CanFly)
Navigator.MoveTo(loc);
else
Flightor.MoveTo(loc);
Does this do it correctly (if you can fly you fly, otherwise you ride) and does it automagically use the right mount when called like that?
Or am I making too simple assumptions?