Skip to content

Commit 5aafdc8

Browse files
committed
Fix for issue #443
1 parent 733220c commit 5aafdc8

File tree

1 file changed

+4
-0
lines changed
  • _datafiles/world/default/rooms/tutorial

1 file changed

+4
-0
lines changed

_datafiles/world/default/rooms/tutorial/903.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const teach_commands = ["get cap", "equip cap", "portal"];
44
const teacherMobId = 57;
55
const teacherName = "Orb of Graduation";
66
const capItemId = 20043;
7+
const newbieKitItemId = 100;
78

89
var commandNow = 0; // Which command they are on
910

@@ -87,6 +88,9 @@ function onEnter(user, room) {
8788
itm = CreateItem(capItemId);
8889
teacherMob.GiveItem(itm);
8990

91+
itm2 = CreateItem(newbieKitItemId);
92+
user.GiveItem(itm2);
93+
9094
teacherMob.Command('emote appears in a ' + UtilApplyColorPattern("flash of light!", "glowing"));
9195

9296
teacherMob.Command('say Congratulation on getting to the end of the training course!', 1.0);

0 commit comments

Comments
 (0)