Give a hint that containers are looted instead of opened

This commit is contained in:
Pasi Kallinen
2016-06-02 18:11:35 +03:00
parent 8240db3445
commit 984785b13c
3 changed files with 5 additions and 2 deletions

View File

@@ -618,6 +618,9 @@ int x, y;
There("is no obvious way to open the drawbridge.");
else if (portcullis || door->typ == DRAWBRIDGE_DOWN)
pline_The("drawbridge is already open.");
else if (container_at(cc.x, cc.y, TRUE))
pline("%s like something lootable over there.",
Blind ? "Feels" : "Seems");
else
You("%s no door there.", Blind ? "feel" : "see");
return res;