Change most http links to https

This commit is contained in:
amfl 2021-06-23 20:05:25 +12:00
parent 43fd533f28
commit 6ccd5a61fd
49 changed files with 188 additions and 188 deletions

View file

@ -202,7 +202,7 @@ will only catch immediate dependence). This function also accepts as input any c
classes, instances or python-paths-to-classes.
Note that Python code should usually work with [duck
typing](http://en.wikipedia.org/wiki/Duck_typing). But in Evennia's case it can sometimes be useful
typing](https://en.wikipedia.org/wiki/Duck_typing). But in Evennia's case it can sometimes be useful
to check if an object inherits from a given [Typeclass](./Typeclasses) as a way of identification. Say
for example that we have a typeclass *Animal*. This has a subclass *Felines* which in turn has a
subclass *HouseCat*. Maybe there are a bunch of other animal types too, like horses and dogs. Using