more tweaks to stuff

This commit is contained in:
2021-11-23 13:18:23 -05:00
parent af7cd8a5b9
commit d77539e4ec
2 changed files with 2 additions and 2 deletions

View File

@@ -179,7 +179,7 @@ bool PrintChanneler::channel(const PrintBuffer *printbuffer, std::ostream &ostre
line_ = printbuffer->first_line(); line_ = printbuffer->first_line();
} }
while (line_ < printbuffer->first_unchecked()) { while (line_ < printbuffer->first_unchecked()) {
ostream << "[" << printbuffer->nth(line_) << "]" << std::endl; ostream << "|" << printbuffer->nth(line_) << std::endl;
line_ += 1; line_ += 1;
} }
return line_ > printbuffer->first_line(); return line_ > printbuffer->first_line();

View File

@@ -10,5 +10,5 @@ end
function setfoo(n) function setfoo(n)
tangible.nopredict() tangible.nopredict()
tangible.actor().foo = n tangible.actor().inventory.foo = n
end end