minor tweaks to bowling ball + fixed typo in comment

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@2382 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria
2008-10-27 00:40:54 +00:00
parent 87346a0240
commit 7e14052be1
2 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ float Bowling::m_st_max_distance_squared;
float Bowling::m_st_force_to_target;
// -----------------------------------------------------------------------------
Bowling::Bowling(Kart *kart) : Flyable(kart, COLLECT_BOWLING, 10.0f /* mass */)
Bowling::Bowling(Kart *kart) : Flyable(kart, COLLECT_BOWLING, 50.0f /* mass */)
{
float y_offset = 0.5f*kart->getKartLength()+2.0f*m_extend.getY();

View File

@@ -129,7 +129,7 @@ void Homing::update(float dt)
if(m_target != NULL)
{
// correct direction to do towards aimed kart
// correct direction to go towards aimed kart
btTransform my_trans = getTrans();
btTransform target = m_target->getTrans();