bump required LttP Client Version
This commit is contained in:
parent
4884184e4a
commit
54177c7064
|
@ -6,7 +6,6 @@ import socket
|
||||||
import jinja2.exceptions
|
import jinja2.exceptions
|
||||||
from pony.flask import Pony
|
from pony.flask import Pony
|
||||||
from flask import Flask, request, redirect, url_for, render_template, Response, session, abort, send_from_directory
|
from flask import Flask, request, redirect, url_for, render_template, Response, session, abort, send_from_directory
|
||||||
from flask import Blueprint
|
|
||||||
from flask_caching import Cache
|
from flask_caching import Cache
|
||||||
from flask_compress import Compress
|
from flask_compress import Compress
|
||||||
|
|
||||||
|
|
|
@ -63,6 +63,9 @@ class ALTTPWorld(World):
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
def get_required_client_version(self) -> tuple:
|
||||||
|
return max((0, 1, 4), super(ALTTPWorld, self).get_required_client_version())
|
||||||
|
|
||||||
|
|
||||||
class ALttPLocation(Location):
|
class ALttPLocation(Location):
|
||||||
game: str = "A Link to the Past"
|
game: str = "A Link to the Past"
|
||||||
|
|
Loading…
Reference in New Issue