You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Pimmel von ${user}:\n${penis}\n(Länge: ${size.toFixed(2)} cm, Umfang: ${circumference} cm, Gemessen um ${time(measurement,TimestampStyles.LongDateTime)})`,
`Pimmel von ${user}:\n${penis}\n(Länge: ${size.toFixed(2)} cm, Umfang: ${circumference} cm, Gemessen um ${time(measurement,TimestampStyles.LongDateTime)})`,
log.debug(`No recent measuring of ${userToMeasure.id} found. Creating Measurement.`);
154
147
155
-
constsize=clamp(sizeGenerator.get(),1,PENIS_LENGTH_MAX);// TODO: Do we really want to clamp here? Maybe just clamp(v, 1, Infinity)?
156
-
157
-
// TODO: Maye we want the radius to be integer only for display (and keep the float internally)
158
-
constradius=clamp(Math.round(radiusGenerator.get()),1,PENIS_RADIUS_MAX)asRadius;// TODO: Do we really want to clamp here? Maybe just clamp(v, 1, Infinity)?
148
+
constsize=Math.max(sizeGenerator.get(),1);
149
+
constradius=Math.max(radiusGenerator.get(),1);
159
150
160
151
if(awaitisNewLongestDick(size)){
161
152
log.debug(`${userToMeasure} has the new longest dick with size ${size}`);
0 commit comments