Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CM1101
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jiajing Pan
CM1101
Merge requests
!1
Update game1_template/map.py
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Update game1_template/map.py
c22056813-main-patch-58603
into
main
Overview
1
Commits
1
Pipelines
0
Changes
1
Open
Jiajing Pan
requested to merge
c22056813-main-patch-58603
into
main
2 years ago
Overview
1
Commits
1
Pipelines
0
Changes
1
Expand
add room_shack in map.py
0
0
Merge request reports
Compare
main
main (HEAD)
and
latest version
latest version
13ff7533
1 commit,
2 years ago
1 file
+
13
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
game1_template/map.py
+
13
−
1
Options
@@ -59,6 +59,17 @@ Queen's Buildings.""",
"
exits
"
:
{
"
west
"
:
"
Parking
"
}
# ADD EXITS HERE!
}
room_shack
=
{
"
name
"
:
"
Shack
"
,
"
description
"
:
"""
You are standing in an old shack and a man is sleeping.
"""
,
"
exits
"
:
{
"
north
"
:
"
Bottom
"
},
"
items
"
:
[]
}
rooms
=
{
@@ -66,5 +77,6 @@ rooms = {
"
Admins
"
:
room_admins
,
"
Tutor
"
:
room_tutor
,
"
Parking
"
:
room_parking
,
"
Office
"
:
room_office
"
Office
"
:
room_office
,
"
Shack
"
:
room_shack
}
Loading