This commit is contained in:
parent
85fecdb6f2
commit
ba904bf512
8 changed files with 26 additions and 7 deletions
|
@ -79,6 +79,10 @@
|
|||
#include "pickups\pquest.h"
|
||||
#endif
|
||||
|
||||
#ifndef __PICKUPS_PKELP_H__
|
||||
#include "pickups\pkelp.h"
|
||||
#endif
|
||||
|
||||
#include "game/game.h"
|
||||
|
||||
/* Std Lib
|
||||
|
@ -488,6 +492,10 @@ CBasePickup *createPickup(const PICKUP_TYPE _type,const DVECTOR *_pos)
|
|||
pickup=new ("JellylauncherPickup") CJellyLauncherPickup();
|
||||
break;
|
||||
|
||||
case PICKUP__KELP_TOKEN:
|
||||
pickup=new ("KelpTokenPickup") CKelpTokenPickup();
|
||||
break;
|
||||
|
||||
default:
|
||||
ASSERT(!"UNKNOWN PICKUP TYPE");
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue