Skip to content

Commit

Permalink
Stub refcount() with a fake ref count (#1134)
Browse files Browse the repository at this point in the history
  • Loading branch information
wixoaGit authored Apr 5, 2023
1 parent 3beb596 commit 45632df
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion DMCompiler/DMStandard/_Standard.dm
Original file line number Diff line number Diff line change
Expand Up @@ -279,4 +279,10 @@ proc/isobj(Loc1)
return 1

proc/winshow(player, window, show=1)
winset(player, window, "is-visible=[show ? "true" : "false"]")
winset(player, window, "is-visible=[show ? "true" : "false"]")

proc/refcount(var/Object)
// woah that's a lot of refs
// i wonder if it's true??
return 100
// (it's not)

0 comments on commit 45632df

Please sign in to comment.