diff options
author | Nipun Garg | 2019-07-03 05:57:41 +0530 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:08 +0200 |
commit | a870b934218fb6782709858ead4aab7a73295809 (patch) | |
tree | 43d1e27733f8ff97a60f0d678f7ebfc9b5a23d5c /engines/hdb | |
parent | c6f4bdc2c1231d4122f644b54c86898172ff823c (diff) | |
download | scummvm-rg350-a870b934218fb6782709858ead4aab7a73295809.tar.gz scummvm-rg350-a870b934218fb6782709858ead4aab7a73295809.tar.bz2 scummvm-rg350-a870b934218fb6782709858ead4aab7a73295809.zip |
HDB: Add Seed and Soda functions
Diffstat (limited to 'engines/hdb')
-rw-r--r-- | engines/hdb/ai-player.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/engines/hdb/ai-player.cpp b/engines/hdb/ai-player.cpp index 38faa84047..2a56792b53 100644 --- a/engines/hdb/ai-player.cpp +++ b/engines/hdb/ai-player.cpp @@ -1319,19 +1319,21 @@ void aiKeycardBlackInit2(AIEntity *e) { } void aiSeedInit(AIEntity *e) { - warning("STUB: AI: aiSeedInit required"); + strcpy(e->printedName, "some Henscratch"); + e->aiAction = aiGetItemAction; } void aiSeedInit2(AIEntity *e) { - warning("STUB: AI: aiSeedInit2 required"); + e->draw = e->standdownGfx[0]; } void aiSodaInit(AIEntity *e) { - warning("STUB: AI: aiSodaInit required"); + strcpy(e->printedName, "a Dr. Frostee"); + e->aiAction = aiGetItemAction; } void aiSodaInit2(AIEntity *e) { - warning("STUB: AI: aiSodaInit2 required"); + e->draw = e->standdownGfx[0]; } void aiDollyTool1Init(AIEntity *e) { |