Changeset 8316 in orxonox.OLD for trunk/src/world_entities/weapons
- Timestamp:
- Jun 11, 2006, 1:57:27 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/weapons/weapon.cc
r7779 r8316 86 86 } 87 87 } 88 return NULL; 88 89 } 89 90 … … 421 422 return this->activateW(); 422 423 break; 424 default: 425 PRINTF(2)("Action %s Not Implemented yet \n", Weapon::actionToChar(action)); 426 return false; 423 427 } 424 428 } … … 442 446 this->enterState(WS_ACTIVATING); 443 447 } 448 return true; 444 449 } 445 450 … … 460 465 this->enterState(WS_DEACTIVATING); 461 466 } 467 468 return true; 462 469 } 463 470 … … 483 490 this->requestAction(WA_RELOAD); 484 491 } 492 return true; 485 493 } 486 494 … … 509 517 this->execute(); 510 518 } 519 return true; 511 520 } 512 521 … … 539 548 this->reload(); 540 549 this->enterState(WS_RELOADING); 550 551 return true; 541 552 } 542 553
Note: See TracChangeset
for help on using the changeset viewer.