1
Fork 0
mirror of https://github.com/Quackster/Havana.git synced 2025-07-03 13:17:46 +00:00

Remove unused view - fix teleporters and other items

This commit is contained in:
Quackster 2022-09-09 09:26:45 +10:00 committed by GitHub
parent aeb7909018
commit 2587a124db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -204,7 +204,7 @@ public class ItemDao {
try {
sqlConnection = Storage.getStorage().getConnection();
preparedStatement = Storage.getStorage().prepare("SELECT * FROM vw_items WHERE id = ?", sqlConnection);
preparedStatement = Storage.getStorage().prepare("SELECT * FROM items WHERE id = ?", sqlConnection);
preparedStatement.setLong(1, itemId);
resultSet = preparedStatement.executeQuery();