Rename all instances of "virgin" being used as a variable name to more appropriate and self-explanatory variable name

This commit is contained in:
variableundefined
2020-10-15 16:11:11 -04:00
parent ffe8ae3786
commit e039b8e560
5 changed files with 18 additions and 18 deletions
+3 -3
View File
@@ -5,7 +5,7 @@
icon_state = "spirit_board"
density = 1
anchored = 0
var/virgin = 1
var/used = FALSE
var/cooldown = 0
var/planchette = "A"
var/lastuser = null
@@ -28,8 +28,8 @@
if(!spirit_board_checks(M))
return 0
if(virgin)
virgin = 0
if(!used)
used = TRUE
notify_ghosts("Someone has begun playing with a [src.name] in [get_area(src)]!", source = src)
planchette = input("Choose the letter.", "Seance!") in list("A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z")