Skip to content

Commit

Permalink
Merge pull request #1503 from ZarothYe/lookpocket
Browse files Browse the repository at this point in the history
Fix /look in pocket command incorrectly triggering /look
  • Loading branch information
Hoikas authored Oct 14, 2023
2 parents f47b5cd + 2936293 commit f07ded8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Scripts/Python/ki/xKIConstants.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,9 +329,9 @@ class kCommands:
Internal = {"/revisitcleft" : "RevisitCleft",
"/restart" : "RestartGame",
"/gamereward" : "MarkerGameReward"}
EasterEggs = {"/look" : "LookAround",
"/get feather" : "GetFeather",
"/look in pocket" : "LookForFeathers"}
EasterEggs = {"/look in pocket" : "LookForFeathers",
"/look" : "LookAround",
"/get feather" : "GetFeather"}
Text = {"/go" : "Put one foot in front of the other and eventually you will get there.",
"/fly" : "You close your eyes, you feel light headed and the ground slips away from your feet... Then you open your eyes and WAKE UP! (Ha, you can only dream about flying.)"}
Other = {"/party" : "PartyTime",
Expand Down

0 comments on commit f07ded8

Please sign in to comment.