Skip to content

Commit

Permalink
oops missed one
Browse files Browse the repository at this point in the history
  • Loading branch information
DigiDuncan committed Nov 28, 2023
1 parent 9af3601 commit b46eb78
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions sizebot/lib/proportions.py
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ def __init__(self, userdata: User):
self.footlength = self.stats.get("footlength").value

# How does this one work??
self.shoesize = formatShoeSize(self.footlength.value, self.gender)
self.shoesize = formatShoeSize(self.footlength, self.gender)

# TODO: Is this accounted for in the new implementation?:
# if userdata.pawtoggle:
Expand All @@ -715,7 +715,7 @@ def __init__(self, userdata: User):

# Yeah, I don't think we recreated these.
# =======================================
self.avgheightcomp = SV(average_height * self.viewscale)
self.avgheightcomp = SV(AVERAGE_HEIGHT * self.viewscale)
self.avgweightcomp = WV(DEFAULT_WEIGHT * self.viewscale ** 3)

viewangle = calcViewAngle(self.height.value, average_height)
Expand Down Expand Up @@ -753,7 +753,6 @@ def __init__(self, userdata: User):
self.visibility = self.stats.get("visibility").value

def getFormattedStat(self, stat: str):
print("a")
returndict = {
"height": f"'s current height is **{self.height:,.3mu}**, or {self.formattedscale} scale.",
"weight": f"'s current weight is **{self.weight:,.3mu}**.",
Expand Down

0 comments on commit b46eb78

Please sign in to comment.