This repository has been archived by the owner on Jun 29, 2024. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
given_skills added to classes (attempt 2) #929
base: main
Are you sure you want to change the base?
given_skills added to classes (attempt 2) #929
Changes from 6 commits
1e1f8fc
b10b956
ca2f78e
d83d68f
5d7170f
2b57717
f48f6ec
d00ca0d
4f1e3d3
d948c4a
42d0f4a
84fade4
8ccf3aa
d27eca1
3f926e8
6d72228
ab6d938
589b619
8c862cd
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh look its the funny new operator!
...does it even work with lists? i know for a fact initial() refuses to work with lists
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
on children yes, on parent it throws a runtime
`
/datum/test
var/list/given_skills = list()
/datum/test/child
given_skills = list("blah" =1 , "halb" = 2)
/mob/verb/test()
world<<jointext(/datum/test/child::given_skills, " , ")
`
does result in: blah , halb