@@ -245,17 +245,17 @@ async def shrinkray(self, ctx: GuildContext, level: int, user: discord.Member |
245245 except UserNotFoundException :
246246 pass
247247
248- outstring = f"{ self_nick } cranks the shrink ray to { original_level } ..."
248+ outstring = f"{ self_nick } cranks the shrink ray to { original_level } ... "
249249 if level_was_11 :
250250 outstring += "\n -# *Wait, it goes up that high?!*"
251251 if ctx .author .id == user .id :
252252 outstring += "and zaps themselves!"
253253 else :
254254 outstring += f"and zaps { userdata .nickname } !"
255255 if crit :
256- outstring += f" And it's a critical hit! They are now { userdata .height :mu} tall."
256+ outstring += f"\n And it's a critical hit! They are now { userdata .height :mu} tall."
257257 else :
258- outstring += f" They are now { userdata .height :mu} tall."
258+ outstring += f"\n They are now { userdata .height :mu} tall."
259259
260260 await ctx .send (outstring )
261261
@@ -306,17 +306,17 @@ async def growthray(self, ctx: GuildContext, level: int, user: discord.Member |
306306 except UserNotFoundException :
307307 pass
308308
309- outstring = f"{ self_nick } cranks the growth ray to { original_level } ..."
309+ outstring = f"{ self_nick } cranks the growth ray to { original_level } ... "
310310 if level_was_11 :
311311 outstring += "\n -# *Wait, it goes up that high?!*"
312312 if ctx .author .id == user .id :
313313 outstring += "and zaps themselves!"
314314 else :
315315 outstring += f"and zaps { userdata .nickname } !"
316316 if crit :
317- outstring += f" And it's a critical hit! They are now { userdata .height :mu} tall."
317+ outstring += f"\n And it's a critical hit! They are now { userdata .height :mu} tall."
318318 else :
319- outstring += f" They are now { userdata .height :mu} tall."
319+ outstring += f"\n They are now { userdata .height :mu} tall."
320320
321321 await ctx .send (outstring )
322322
0 commit comments